问题
单项选择题
下图是HTML文件submit.html在IE中的部分显示效果。
请完成下面submit.html中部分html代码。
<form action=/cgi-bin/post-query method=POST>
您的姓名:
<input type=text name=姓名><br>
您的主页的网址:
<input type=text name=网址vlaue=http://><br>
密码:
<input type= (16) name=密码><br>
<input type=submit value="发送"><input type= (17) value="重设">
</form>
(17)处填()。
A.send
B.reset
C.restart
D.replace
答案
参考答案:B
解析:
[分析]: 在表单中,属性type=text时,输入的文本以标准的字符显示;若type=password,则输入的文本显示为“*”。对于重设按钮,其属性type的值为reset。