如果要在表单里创建一个普通文本框,以下写法中正确的是:( )。
A: <INPUT type="checkbox">
B: <INPUT>
C: <INPUT type="password">
D: <INPUT type="radio">
A: <INPUT type="checkbox">
B: <INPUT>
C: <INPUT type="password">
D: <INPUT type="radio">
举一反三
- 如果要在表单中创建一个普通文本框,以下写法中的正确的是( )。 A: <input type="text"> B: <input type="password"> C: <input type="checkbox"> D: <input type="radio">
- 密码输入框和文本输入框样式同时定义时,写法正确的是( ) A: input[type="text"] [type="password"] { } B: input[type="text"],[type="password"] { } C: input([type="text"],[type="password"]) { } D: input(type="text"),(type="password") { }
- 以下代码,正确表示表单中的复选框的是?( )。 A: <input type="password"> B: <input type="radio"> C: <input type="checkbox"> D: <input type="text">
- 下列哪个是文件域表单元素正确的写法?( ) A: <input type="file" name="file" /> B: <input type="button" name="btn" /> C: <input type="text" name="text" /> D: <input type="password" name="pwd" />
- 在表单中包含性别选项,且默认状态为“男”被选中,下列正确的是( )。 A: <input type="radio" name="sex" checked>男 B: <input type="radio" name="sex" enabled>男 C: <input type="checkbox" name="sex" checked>男 D: <input type="checkbox" name="sex" enabled>男