有如下一段代码,请问它的功能是()
创建一个文本框
举一反三
- 阅读以下代码段,则可知 <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">
- 阅读以下代码段,则可知下列代码分别定义了( ) <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: 文本框
- HTML代码<input type="text" name="email">表示什么?
- 以下代码,允许上传的文件类型有( )。<;input type="file" name="file" accept="text/*">; A: .css B: .shtml C: .txt D: .rtf
内容
- 0
2.HTML5中,要实现如图所示的效果的代码是( ) A: <;input name="color" type="text"/>; B: <;input name="color" type="textarea"/>; C: <;input name="color" type="color"/>; D: <;input name="color" type="radio"/>;
- 1
"HTML代码<input type=text name=""foo""size=20>表示( )。
- 2
怎么才能隐藏下面的元素? <input id="id_txt" name="txt" type="text" value="" />
- 3
设有以下两行HTML代码:01 <;input name="xm" type="text" />;02 <;input type="password" />;下列哪些选择器仅可以选择01行标签 A: input{} B: input[name]{} C: input[type]{} D: input[name=xm]{} E: input[name*=xm]{}
- 4
有如下一段代码: title = 'Company CEO' print('-'.join(title.split())) 请问输出结果为: