在
HTML,JavaScript或jQuery中有没有办法使输入元素“只读”,即
>用户可以读取它
>用户可以将其内容复制到剪贴板
>用户无法更改
这将在所有浏览器中运行?我知道有一个“只读”属性,但不支持所有浏览器.
我不是问安全方面,只是用户体验.
解决方法
如果你使用jQuery(就像你放在标签中)一样,它是跨浏览器的:
$(...your input ...).attr('readonly','readonly');
编辑:从http://www.w3schools.com/tags/att_input_readonly.asp
The readonly attribute is supported in all major browsers.