JQuery 常用代码块

选择器

删除节点的所有属性

1
2
3
4
5
6
7
8
9
10
11
jQuery.fn.removeAttributes = function() {
return this.each(function() {
var attributes = $.map(this.attributes, function(item) {
return item.name;
});
var element = $(this);
$.each(attributes, function(i, item) {
element.removeAttr(item);
});
});
}

例如删除 <img> 节点的所有属性,使用示例如下:

1
$("img").removeAttributes();