jquery设置iframe中RadioButton的Text值的方法

发布时间:2020-01-10编辑:脚本学堂
本文介绍下,使用jquery设置页面中,iframe包含的RadioButton的Text值的方法。有需要的朋友,参考下吧。

1、控件代码
 

<asp:RadioButton ID="rbStepY1" runat="server" GroupName="a" Text="步骤1" onclick="rbStepN2.checked=true;" />
<asp:RadioButton ID="rbStepY2" runat="server" GroupName="a" Text="步骤2" onclick="rbStepN1.checked=true;" />

2、解析为html,则是这样:
 

复制代码 代码示例:
<input id="rbStepY1" type="radio" name="a" value="rbStepY1" onclick="rbStepN2.checked=true;" /><label for="rbStepY1">步骤1</label>
<input id="rbStepY2" type="radio" name="a" value="rbStepY2" onclick="rbStepN1.checked=true;" /><label for="rbStepY2">步骤2</label>
var t= $("#ifmProperty").contents().find("#rbStepY1").next().text();//获取值 t="步骤1"
$("#ifmProperty").contents().find("#rbStepY1").next().text("abc");//设置rbStepY1 的值为“abc”

有兴趣的朋友,亲自动手测试下吧,感受jquery操作iframe中元素的强大威力。