标签: javascript jquery html
可能重复: remove attribute of html tag
我的代码中有一些jQuery,它为我的代码中的所有标记添加了一个rel属性。我不想删除添加这些rel属性的代码,而是希望使用JavaScript / jQuery删除这些rel属性。我能够将rel属性重置为空字符串,因此:
var $this = $(this); var $items = $this.find('a'); $items.attr('rel', '');
相反,我想做的是完全删除rel标签。有谁知道怎么做?
答案 0 :(得分:11)
尝试removeAttr() http://api.jquery.com/removeAttr/
removeAttr()
$items.removeAttr('rel');