32. (分录题, 10.0分) 文本框+按钮 请补全实现以下页面的代码: <FORM action=”http://localhost/dosomething” > 用户名:<input type="_______" name="queryuser" /> 密码:<input type="________" name="password" /> <input name="" type="________" value="________" /> </FORM>
时间: 2023-10-09 08:07:00 浏览: 82
< action="http://localhost/dosomething" >
用户名:<input type="text" name="queryuser" />
密码:<input type="password" name="password" />
<input name="submit" type="submit" value="提交" />
</FORM>
阅读全文