1.response对象的setHeader(String name,String value)方法的作用是 ( )。<;br>; <;input type="radio" name="1" value="A">;添加HTTP文件头<;br>; <;input type="radio" name="1" value="B">;设置指定名字的http头的值<;br>; <;input type="radio" name="1" value="C">;判断指定名字的http头的值是否存在<;br>; <;input type="radio" name="1" value="D">;向用户发送错误信息<;br>;中,name属性为何设置为相同值
A: 便于管理
B: 便于记忆
C: 不应该设置为相同值
D: 表示同一组单选框
A: 便于管理
B: 便于记忆
C: 不应该设置为相同值
D: 表示同一组单选框
举一反三
- <input type=”radio” name=”radio1” value=1>的作用是什么?
- 在网页中有如下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="text" name="textfield"> <input type="radio" name="radio" value="女"> <input type="checkbox" name="checkbox" value="checkbox"> <input type="file" name="file">
- 表单:阅读以下代码段,则可知( )。 <INPUT type="text" name="textfield"><INPUT type="radio" name="radio" value="女"><INPUT type="checkbox" name="checkbox" value="checkbox"><INPUT type="file" name="file">
- 单行文本输入框的语法为? A: <input type="text" name="name" maxlength="value" size="value" value="value" /> B: <input type="password" name=" name" maxlength="value" size="value" /> C: <input type="radio" name="field_name" value="value" checked> D: <input type="checkbox" name=" name" value="value" checked />