我需要从<div>
内的每个元素中删除所有属性(id,类,事件,样式等)。
如何使用jQuery实现这一目标?
答案 0 :(得分:2)
这可以使用简单的while循环:
$("div#myDiv").children().each(function() {
while(this.attributes.length > 0)
this.removeAttribute(this.attributes[0].name);
});
其中'myDiv'是父div的ID。