js设置input文本框只读

发布时间:2019-11-23编辑:脚本学堂
本文介绍一个设置input文本框为只读的例子,并实现了input无边框效果,有需要的朋友参考下。

例子,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>