中国大学MOOC: 在网页中有如下HTML代码: ‹input type=‶radio‶ name=‶sex‶ value=‶man‶/›男 ‹input tpe=‶radio‶ name=‶sex‶ value=‶woman‶/›女 则设置选择状态为“女”,正确jquery实现代码为( )。
举一反三
- 在网页中有如下HTML代码:[br][/br] [input type="radio" name="sex" value="man"/]男 [input type="radio" name="sex" value="woman"/]女 则设置选择状态为“女”,正确jquery实现代码为: A: $("input:radio").get(0).attr("checked",true); B: $( input[type=radio] )[1].attr( checked ,true); C: $( input[type=radio] ).eq(1).attr( checked ,true); D: $("sex:radio").eq(1).attr("checked",true);
- 页面中有一个性别单选按钮,请设置“男”为选中状态。代码如下: <input type="radio" name="sex"> 男 <input type="radio" name="sex"> 女 正确的是
- 页面中有一个性别单选按钮,代码如下: <input type="radio" name="sex"> 男 <input type="radio" name="sex"> 女 请设置单选按钮“男”为选中状态,正确的是
- 如下代码中,设置女为默认选项的属性是<;input type="radio" name="sex" value="male"/>;男<;input type="radio" name="sex" value="female"/>;女 A: option="option" B: selected="selected" C: checked="checked" D: check="default"
- <;input type=”()” name=”sex” value=”0” checked>;男<;input type=”()” name=sex value=”2”>;女上面代码,添加了一组单选按钮,用于选择性别。 A: radio,radio B: text,text C: checkbox,checkbox D: radio,text