html 加上readonly后在各种浏览器的差异。

 <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键,不起任何作用。

上一篇:从mysql读取数据写入mongo


下一篇:html中去掉文本框(input type="text")的边框或只显示下边框