让input text只读的几种方法 by yanleigis,Email:landgis@126.com 参考http://www.jb51.net/article/17185.htm

来源:互联网 发布:高瓴资本知乎 编辑:程序博客网 时间:2024/05/07 20:06

 
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>让input text只读的几种方法 by yanleigis,Email:landgis@126.com 参考http://www.jb51.net/article/17185.htm</title>
</head>

<body>
<input type="text" value="方法1 disabled=true" disabled=true>
<br>
<input type="text" value="方法2 disabled" disabled>
<br>
<input type="text" value="方法3 readonly" readonly>
<br>
<input type="text" value='方法4 onFocus="this.blur()"' onFocus="this.blur()">

</body>
</html>