属性选择器语法格式不正确的是()。
第1题:
如果要在表单中创建一个普通文本框,下列标记中正确的是( )。
A.<input type=”text”>
B.<input type=”password”>
C.<input type=”CheCkbox”>
D.<input type=”radio”>
第2题:
在页面中看不见的表单元素是那种?()
第3题:
增加表单的单选框的HTML代码是()
第4题:
增加表单的复选框的HTML代码是()
第5题:
〈INPUT〉标记中属性type="text"时该〈INPUT〉显示为()
第6题:
以下语法格式正确的是()。
第7题:
下列代码使用HTML元素的ID属性,将样式应用于网页上的某个段落:<P id=”firstp”>这是一个段落</P>,下面选项中,()正确定义了上面代码引用的样式规则。
第8题:
增加表单的文字段的HTML代码是()
第9题:
下列的HTML中哪个可以产生文本框?()
第10题:
在页面中看不见的表单元素是那种?()
第11题:
<Style Type=”text/css”> P {color:red} </Style>
<Style Type=”text/css”> #firstp {color:red} </Style>
<Style Type=”text/css”> .firstp {color:red} </Style>
<Style Type=”text/css”> P.firstp {color:red} </Style>
第12题:
( 难度:中等)增加表单电脑的隐藏域的HTML代码是()
A.<input type=submit>
B.<input type=image>
C.<input type=text>
D.<input type=hidden>
答案:D
第13题:
A.<input type="password"></input>
B.<input type="radio"></input>
C.<input type="hidden"></input>
D.<input type="reset"></input>
第14题:
在表单的相关标记中,表示提供给用户一个可以复选的选项的标记为()
第15题:
增加表单的图像域的HTML代码是()
第16题:
以下属性选择器语法格式错误的是()。
第17题:
以下表示获取焦点的,语法格式正确的是()。
第18题:
要求用JavaScript实现下面的功能:在一个文本框中内容发生改变后,单击页面的其他部分将弹出一个消息框显示文本框中的内容,下面语句正确的是()。
第19题:
以下Form表单元素描述,()是错的。
第20题:
在不指定特殊属性的情况下,哪几种HTML标签可以手动输入文本:()
第21题:
增加表单的密码域的HTML代码是()
第22题:
〈input type=password〉表示密码框
〈input type=reset〉表示提交按钮
〈select name=radio〉表示单选框
〈input type=text〉表示文本框
第23题:
〈input type=text onClick=alert(this.value)〉
〈input type=text onChange=alert(this.value)〉
〈input type=text onChange=alert(text.value)〉
〈input type=text onClick=alert(value)〉