代码改变世界

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

2013-12-05 11:21  无聊玩博客  阅读(4556)  评论(0编辑  收藏  举报
<html>
<body>  
  <p>Name:<input type="text" name="email" /></p>
  <p>Country:<input type="text" name="country" 
  value="China" readonly="readonly" /></p> 
</body>
</html>

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

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

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