以下哪种语句是实现表单提交的动作?( )[2分]
A: <input type=submit name=**>
B: <input type=reset name=**>
C: <input type=text name=**>
D: <input type=password name=**>
A: <input type=submit name=**>
B: <input type=reset name=**>
C: <input type=text name=**>
D: <input type=password name=**>
举一反三
- 用来输入密码的表单域是( )。 A: <input type=”text” …….> B: <input type=”reset” …….> C: <input type=”password” …….> D: <input type=”submit” …….>
- 在表单中添加提交按钮,实现在用户单击“提交“按钮时,自动将表单提交到ACTION属性中指定的位置。下列语句正确的是( )。 A: <form method=“post” action=“”><input type=“button” value=“提交” name=“b1”></form> B: <form method=“post” action=“”><input type=“reset” value=“提交” name=“reser1”></form> C: <form method=“post” action=“”><input type=“submit” value=“提交” name=“submit1”></form> D: <form method=“post” action=“”><input type=“submit” value=“提交” name=“b1”><button></form>
- input控件是表单中最重要的控件,如果使用input控件表示二选一的性别选项,则下列代码中正确的是 A: <input type="sex">男<input type="sex">女 B: <input type="sex"name="radio">男<input type="sex"name="radio">女 C: <input type="radio"name="nan">男<input type="radio"name="nu">女 D: <input type="radio" name="sex">男<input type="radio" name="sex">女
- 单行文本输入框的语法为? A: <input type="text" name="name" maxlength="value" size="value" value="value" /> B: <input type="password" name=" name" maxlength="value" size="value" /> C: <input type="radio" name="field_name" value="value" checked> D: <input type="checkbox" name=" name" value="value" checked />
- 下列哪一项表示的不是按钮?() A: <input type=”text”> B: <input type=”reset”> C: <input type=”submit”> D: <input type=”button”>