js setAttribute removeAttribute

 

 1     <input type="button" value="生效" style="font-size:111px"/>
 2     <script type="text/javascript">
 3             //单击"生效"按钮,将其失效
 4         var buttonElement=document.getElementsByTagName("input")[0];
 5         buttonElement.onclick=function(){
 6             //添加属性 
 7             this.setAttribute("disabled","true");
 8             //修改属性
 9             this.setAttribute("style","font-size:10px");
10             //删除属性
11             this.removeAttribute("disabled");
12             //另一种修改方式  有些浏览器可能不知道
13             this.value="狗狗狗狗";
14         }
15     </script>

 

js setAttribute removeAttribute,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。