readonly
作为大多数,我对 的属性很熟悉text input
,但是在阅读其他网站的代码时(我的一个讨厌的习惯),我看到了不止一个该属性的实现:
<input type="text" value="myvalue" class="class anotherclass" readonly >
和
<input type="text" value="myvalue" class="class anotherclass" readonly="readonly" >
我什至见过
<input type="text" value="myvalue" class="class anotherclass" readonly="true" >
..而且我相信我看到了更多,但现在不记得确切的语法了..
那么,我应该使用哪一个是正确的?