文本输入框的问题
<form>
姓名:
<input type="text" name="myName">
<br/>
密码:
<input type="password" name="pass">
</form>
在这个里面 <input type="password" name="pass"> 最后需要 / 吗?
<input type="password" name="pass"/>
这两个哪个正确?还是都可以?讲解里面是要 / 的
<form>
姓名:
<input type="text" name="myName">
<br/>
密码:
<input type="password" name="pass">
</form>
在这个里面 <input type="password" name="pass"> 最后需要 / 吗?
<input type="password" name="pass"/>
这两个哪个正确?还是都可以?讲解里面是要 / 的
2016-08-08
举报