html <input type="text" />加上readonly后在各种浏览器的差异。

1 <html>
2 <body>  
3   <p>Name:<input type="text" name="email" /></p>
4   <p>Country:<input type="text" name="country" 
5   value="China" readonly="readonly" /></p> 
6 </body>
7 </html>

上述代码在ie中:可以获得焦点,光标可进入,不能输入,但是按backspace键后,页面会后退跳转。

  在chrome中:可以得到焦点,光标不可进入

  在firebox中:可以得到焦点,光标也可进入。按backspace键,不起任何作用。

原文地址:https://www.cnblogs.com/taojietx/p/5287213.html