下列的HTML中哪个可以产生文本框?()A、<input type="textfield">  B、<textinput type="text"> C、<input type="text">  D、<textfield>

题目

下列的HTML中哪个可以产生文本框?()

  • A、<input type="textfield">  
  • B、<textinput type="text"> 
  • C、<input type="text">  
  • D、<textfield>

相似考题
更多“下列的HTML中哪个可以产生文本框?()A、input type="textfield"  B、textinput type="text" C、input type="text"  D、textfield”相关问题
  • 第1题:

    在下列选项中,正确地产生文本区(textarea)的标记是( )。

    A.<textarea>

    B.<input type=”textarea”>

    C.<input type=”textbox”>

    D.<input type=”text:”>


    正确答案:A

  • 第2题:

    如果要在表单中创建一个普通文本框,下列标记中正确的是( )。A.<input type=”text”>SXB

    如果要在表单中创建一个普通文本框,下列标记中正确的是( )。

    A.<input type=”text”>

    B.<input type=”password”>

    C.<input type=”CheCkbox”>

    D.<input type=”radio”>


    正确答案:A

  • 第3题:

    增加表单的单选框的HTML代码是()

    • A、<input type=submit>
    • B、<input type=iamge>
    • C、<input type=radio>
    • D、<input type=checkbox>

    正确答案:C

  • 第4题:

    增加表单的复选框的HTML代码是()

    • A、<input type=submit> 
    • B、<input type=iamge> 
    • C、<input type=text> 
    • D、<input type=checkbox>

    正确答案:D

  • 第5题:

    属性选择器语法格式不正确的是()。

    • A、input[type="text"]{background:red;}
    • B、input{type="text"}{background:red;}
    • C、input[type=password]{background:red;}
    • D、input[type=’password’]{background:red;}

    正确答案:B

  • 第6题:

    下面哪种方法可以设置单行文本框的默认值为“在这里输入用户名”?()

    • A、〈input type=’text’ name=’txtUserId’ value=’在这里输入用户名’〉
    • B、〈input type=’text’ name=’txtUserId’〉在这里输入用户名〈/input〉
    • C、〈textarea type=’memo’ name=’txtUserId’ value=’在这里输入用户名’〉
    • D、〈textarea type=’memo’ name=’txtUserId’〉在这里输入用户名〈/textarea〉

    正确答案:A

  • 第7题:

    以下Form表单元素描述,()是错的。

    • A、〈input type="password"〉表示密码框
    • B、〈input type="reset"〉表示提交按钮
    • C、〈select name="radio"〉表示单选框
    • D、〈input type="text"〉表示文本框

    正确答案:B

  • 第8题:

    在不指定特殊属性的情况下,哪几种HTML标签可以手动输入文本:()

    • A、<TEXTAREA></TEXTAREA>         
    • B、<INPUT    type=”text”/>       
    • C、<INPUT    type=”hidden”/>       
    • D、<DIV></DIV>

    正确答案:A,B

  • 第9题:

    增加表单的密码域的HTML代码是()

    • A、<input type=submit> 
    • B、<input type=password> 
    • C、<input type=radio> 
    • D、<input type=checkbox>

    正确答案:B

  • 第10题:

    单选题
    以下Form表单元素描述,()是错的。
    A

    〈input type=password〉表示密码框

    B

    〈input type=reset〉表示提交按钮

    C

    〈select name=radio〉表示单选框

    D

    〈input type=text〉表示文本框


    正确答案: C
    解析: 暂无解析

  • 第11题:

    单选题
    要求用JavaScript实现下面的功能:在一个文本框中内容发生改变后,单击页面的其他部分将弹出一个消息框显示文本框中的内容,下面语句正确的是()。
    A

    〈input type=text onClick=alert(this.value)〉

    B

    〈input type=text onChange=alert(this.value)〉

    C

    〈input type=text onChange=alert(text.value)〉

    D

    〈input type=text onClick=alert(value)〉


    正确答案: B
    解析: 暂无解析

  • 第12题:

    ( 难度:中等)在不指定特殊属性的情况下,哪几种HTML 标签可以手动输入文本:( )
    A.<TEXTAREA></TEXTAREA>
    B.<INPUT type= ” text ” />
    C.<INPUT type= ” hidden ” />
    D.<DIV></DIV>

    答案:AB

  • 第13题:

    某 html 文档中有如下代码,则在浏览器中打开该文档时显示为( )。 <form> Listl: <input type="text" name="List1" /> <br / > List2: <input type="text" name="List 2 " /> < /form>

    A.B.C.D.


    正确答案:A

  • 第14题:

    在表单的相关标记中,表示提供给用户一个可以复选的选项的标记为()

    • A、INPUT TYPE=CHECKBOX
    • B、INPUT TYPE=SUBMIT
    • C、INPUT TYPE=RESET
    • D、INPUT TYPE=TEXT

    正确答案:A

  • 第15题:

    增加表单的图像域的HTML代码是()

    • A、<input type=submit>
    • B、<input type=iamge> 
    • C、<input type=radio> 
    • D、<input type=checkbox>

    正确答案:B

  • 第16题:

    下列的HTML中哪个可以产生下拉列表?()

    • A、<list>  
    • B、<input type="list">  
    • C、<input type="dropdown">  
    • D、<select>

    正确答案:D

  • 第17题:

    〈input type="text"/〉表示的是什么()。

    • A、文本框
    • B、密码框
    • C、提交按钮
    • D、取消按钮

    正确答案:A

  • 第18题:

    要求用JavaScript实现下面的功能:在一个文本框中内容发生改变后,单击页面的其他部分将弹出一个消息框显示文本框中的内容,下面语句正确的是()。

    • A、〈input type="text" onClick="alert(this.value)"〉
    • B、〈input type="text" onChange="alert(this.value)"〉
    • C、〈input type="text" onChange="alert(text.value)"〉
    • D、〈input type="text" onClick="alert(value)"〉

    正确答案:B

  • 第19题:

    增加表单的文字段的HTML代码是()

    • A、<input type=submit> 
    • B、<input type=iamge> 
    • C、<input type=text> 
    • D、<input type=hide>

    正确答案:C

  • 第20题:

    在HTML中INPUT元素的TYPE属性用于指定表单元素的类型,下列可用的类型有()。

    • A、BUTTON
    • B、TEXTAREA
    • C、SELECT
    • D、TEXT

    正确答案:A,D

  • 第21题:

    单选题
    下面哪种方法可以设置单行文本框的默认值为“在这里输入用户名”?()
    A

    〈input type=’text’ name=’txtUserId’ value=’在这里输入用户名’〉

    B

    〈input type=’text’ name=’txtUserId’〉在这里输入用户名〈/input〉

    C

    〈textarea type=’memo’ name=’txtUserId’ value=’在这里输入用户名’〉

    D

    〈textarea type=’memo’ name=’txtUserId’〉在这里输入用户名〈/textarea〉


    正确答案: A
    解析: 暂无解析

  • 第22题:

    多选题
    在不指定特殊属性的情况下,哪几种HTML标签可以手动输入文本?()
    A

    〈TEXTAREA〉〈/TEXTAREA〉

    B

    〈INPUT type=“text”/〉

    C

    〈INPUT type=“hidden”/〉

    D

    〈DIV〉〈/DIV〉


    正确答案: C,A
    解析: 暂无解析

  • 第23题:

    ( 难度:中等)增加表单电脑的隐藏域的HTML代码是()
    A.<input type=submit>
    B.<input type=image>
    C.<input type=text>
    D.<input type=hidden>

    答案:D