码迷,mamicode.com
首页 > Web开发 > 详细

常用JQ JS方法集合

时间:2018-03-21 17:30:16      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:无法   nts   pre   一起   gpo   post   方法   html dom   document   

HTML DOM removeAttribute() 方法

removeAttribute() 方法删除指定的属性。

document.getElementsByTagName("H1")[0].removeAttribute("style");

 

HTML DOM removeAttributeNode() 方法  

并且返回被删除的属性,以 Attr 对象的形式

var n=document.getElementsByTagName("H1")[0];
var a=n.getAttributeNode("style");
n.removeAttributeNode(a);

 

 

HTML <input> 标签的 disabled 属性

disabled 属性规定应该禁用 input 元素  注释:disabled 属性无法与 <input type="hidden"> 一起使用。

 

常用JQ JS方法集合

标签:无法   nts   pre   一起   gpo   post   方法   html dom   document   

原文地址:https://www.cnblogs.com/1010wjf/p/8618076.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!