例子,js设置input文本框为只读。
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title>设置input只读--www.jb200.com</title>
<style>
.output-body{readonly:expression(this.readonly=true);border:0px;}
</style>
</head>
<body>
<input type="text" id="test">
<script>
document.getelementbyid("test").classname="output-body";
</script>
</body>
</html>