类别:程序开发
日期:2020-04-05 浏览:2027 评论:0
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>让input text只读的几种方法</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>
本文标题:让input text只读的几种方法
本文链接:https://vtzw.com/post/140.html
版权声明:本文不使用任何协议授权,您可以任何形式自由转载或使用。
发表评论 / 取消回复