下列哪一项表示的不是按钮。( )
A: <input type="submit">
B: <input type="reset">
C: <input type="image">
D: <input type="button">
A: <input type="submit">
B: <input type="reset">
C: <input type="image">
D: <input type="button">
举一反三
- 增加表单的复选框的HTML代码是( )。 A: <input type="submit"> B: <input type= "image"> C: <input type="text"> D: <input type="checkbox">
- 密码字段通过标签( ) 来定义: A: <input type="text"> B: <input type="checkbox"> C: <input type="submit"> D: <input type="password">
- 在页面中看不见的表单元素是( )。 A: <input type="password"></input> B: <input type="radio"></input> C: <input type="hidden"></input> D: <input type="reset"></input>
- 以下代码,正确表示表单中的复选框的是?( )。 A: <input type="password"> B: <input type="radio"> C: <input type="checkbox"> D: <input type="text">
- 在HTML页面中包含一个按钮控件mybutton,如果要实现单击该按钮时调用自定义的JavaScript函数compute,要编写的HTML代码是( )。 A: <input type="button" onBlur="compute()" value="计算"> B: <input type="button" onFocus="compute()" value="计算"> C: <input type="button" onClick="function compute()" value="计算"> D: <input type="button" onClick="compute()" value="计算">