常用JQ JS方法集合

Posted 远古狩猎采集者

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用JQ JS方法集合相关的知识,希望对你有一定的参考价值。

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方法集合的主要内容,如果未能解决你的问题,请参考以下文章

前端开发中最常用的JS代码片段

js常用代码片段(更新中)

js常用代码片段

javascript JS-常用代码片段

js 常用代码片段

JS常用代码片段2-值得收藏