使用jQuery的removeAttr删除多个属性

时间:2012-12-05 14:20:47

标签: jquery

我有以下代码。

$(document).ready(function(){
 $('#listing img')
 .attr('width', 250)
 .removeAttr('height').removeAttr('align').removeAttr('style')
 .wrap('<p />');
});

是否有更有效的方法来删除多个属性?

2 个答案:

答案 0 :(得分:156)

是的:

.removeAttr('height align style')

来自the documentation

  

从版本1.7开始,它可以是以空格分隔的属性列表。

答案 1 :(得分:1)

是的,您可以这样删除它:

$('#listing img').removeAttr('height align style');

您还可以按如下方式添加这些属性:

$('#listing img').attr({ height: "20", align: left }).css({ color: red, text-align: center });