设置input text只读的几种方法

发布时间:2020-04-07编辑:脚本学堂
本文介绍了设置input text文本框为只读的四种方法,包括disabled、readonly与onfocus焦点方法,有需要的朋友参考下。

例子,如何设置input text为只读。
 

复制代码 代码示例:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>让input text只读的几种方法_www.jb200.com</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>