代码[form action="" method="POST" ]性别:[input name="sex" type="radio" value="男" checked]男 [input type="submit" name="Submit" value="提交"][/],运行时只点击提交而不作任何输入,关于变量$_POST["sex"]的值正确的说法是
A: $_POST["sex"]为空字符串
B: $_POST["sex"]变量不存在
C: $_POST["sex"]= "radio"
D: $_POST["sex"]= "男"
A: $_POST["sex"]为空字符串
B: $_POST["sex"]变量不存在
C: $_POST["sex"]= "radio"
D: $_POST["sex"]= "男"
举一反三
- 使用 input 输入域标记创建一个用户性别的单选按钮选项一个提交按钮,并将“男”作为默认选项。请补充完成下列代码:[br][/br][body][br][/br][form name="form1" method="post" action=""][br][/br]性别:[br][/br][input name="sex" type="____" value="男" ____]男[br][/br][input name="sex" type="____" value="女"]女[br][/br][input name="submit" type="____" value="提交"][br][/br]____</body
- 【单选题】页面中有一个性别单选按钮,请设置”男”为选中状态。代码如下:[br][/br][input type="radio" name="sex"] 男[br][/br][input type="radio" name="sex"] 女 正确的是[br][/br](选择一项) A: $( sex[0] ).attr( checked ,true); B: $( C: sex[0] ).attr( checked ,true); D: $( [name=sex]:radio ).attr( checked ,true); E: $(":radio[name=sex]:eq(0)").attr("checked",true);
- 在网页中有如下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);
- 在表单中包含性别单选项,且默认状态为“男”被选中,下列正确的是()。 A: <input type="radio" name="sex" checked="checked"> 男 B: <input type="radio" name="sex" checked="enabled">男 C: <input type="radio" name="sex" enabled="checked">男 D: <input type="radio" name="sex" enabled="enabled">男
- 页面中有一个性别单选按钮,请设置“男”为选中状态。代码如下:<;input type="radio" name="sex">; 男<;input type="radio" name="sex">; 女正确的是( ) A: $("sex[0]").attr("checked",true); B: $(" C: sex[0]").attr("checked",true); D: $("[name=sex]:radio").attr("checked",true); E: $(":radio[name=sex]:eq(0)").attr("checked",true);