<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>