通过js设置所有form对象为只读
程序员文章站
2022-03-31 21:15:00
...
例子,设置form中所有对象为只读。
<html> <body> <script language="javascript"> function DisableDiv(p) { var objs=new Array() var strobj strobj="input|a|button" objs=strobj.split("|") //for循环开始设置form对象为只读 for(k=0;k<objs.length;k++) { obj1=document.getElementById(p).getElementsByTagName(objs[k]) for (var i=0; i<obj1.length; i++) { obj1[i].disabled=true obj1[i].onclick=function() { this.disabled=true return false } obj1[i].onkeypress=function() { this.disabled=true return false } } } } </script> <p id="p1"> <input type="text" name="textfield"> <input type="button" name="Submit" value="点击我" onclick="javascript:alert('click me')"> </p> </body> ,欢迎大家的光临。 <script language="javascript"> //初始化 DisableDiv('p1') </script> </html>
相关文章:
以上就是通过js设置所有form对象为只读的详细内容,更多请关注其它相关文章!
上一篇: Google公司副总:社区、内容将取代API称王_MySQL
下一篇: 优先队列