当前位置: 编程技术>jquery
jquery设置iframe中RadioButton的Text值的方法
来源: 互联网 发布时间:2014-09-03
本文导语: 1、控件代码 2、解析为html,则是这样: 代码示例: 步骤1 步骤2 var t= $("#ifmProperty").contents().find("#rbStepY1").next().text();//获取值 t="步骤1" $("#ifmProperty").contents().find("#rbStepY1").next().text("abc");//设置rbStepY1 的值为“abc” 有兴...
1、控件代码
2、解析为html,则是这样:
代码示例:
步骤1
步骤2
var t= $("#ifmProperty").contents().find("#rbStepY1").next().text();//获取值 t="步骤1"
$("#ifmProperty").contents().find("#rbStepY1").next().text("abc");//设置rbStepY1 的值为“abc”
步骤2
var t= $("#ifmProperty").contents().find("#rbStepY1").next().text();//获取值 t="步骤1"
$("#ifmProperty").contents().find("#rbStepY1").next().text("abc");//设置rbStepY1 的值为“abc”
有兴趣的朋友,亲自动手测试下吧,感受jquery操作iframe中元素的强大威力。