A: input type="textfield"
B: textinput type="text"
C: input type="text"
D: textfield
举一反三
- 阅读以下代码段,则可知下列代码分别定义了( ) <INPUT type="text" name="textfield"> <INPUT type="radio" name="radio" value="女"> <INPUT type="checkbox" name="checkbox" value="checkbox"> <INPUT type="file" name="file">。 A: 文本框 B: 文本框 C: 密码框 D: 文本框
- 在声明表单中input标签type属性等于text文本框的样式时,下列哪种方法是正确的()。 A: forminput{type=”text”} B: form(type=”text”)input C: forminput[type=”text”] D: form[type=”text”]input
- 下列的HTML中哪个可以产生复选框?(注:由于浏览器识别问题,下列四个选项中标签尖括号已去掉) A: inputtype="check" B: checkbox C: inputtype="checkbox" D: check
- 阅读以下代码段,则可知 <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">
内容
- 0
在HTML中,增加表单的单行文本域的HTML代码是() A: <;input type=”submit”/>; B: <;input type=”image”/>; C: <;input type=”text”/>; D: <;input type=”hide”/>;
- 1
密码输入框和文本输入框样式同时定义时,写法正确的是( ) A: input[type="text"] [type="password"] { } B: input[type="text"],[type="password"] { } C: input([type="text"],[type="password"]) { } D: input(type="text"),(type="password") { }
- 2
邮箱输入框和文本输入框同时定义样式时,写法正确的是( ) A: input[type="text"],[type="email"] { } B: input([type="text"],[type="email"] ){ } C: input[type="text"][type="email"] { } D: input(type="text"),(type="email") { }
- 3
以下代码段表示的表单元素类型分别是( )。<;input type="text" name="textfield">;<;input type="radio" name="radio" value="女">;<;input type="checkbox" name="checkbox" value="checkbox">;<;input type="file" name="file">; A: 文本框、单选按钮、复选框、文件域 B: 文本框、复选框、单选按钮、文件域 C: 密码框、多选按钮、复选框、文件域 D: 文本框、单选按钮、下拉列表框、文件域
- 4
input type="text"表示多行文本框。