JQuery 常用代码块 发表于 2019-05-13 阅读次数: 评论数: 本文字数: 42 阅读时长 ≈ 1 分钟选择器删除节点的所有属性1234567891011jQuery.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();