我有以下代码。
$(document).ready(function(){
$('#listing img')
.attr('width', 250)
.removeAttr('height').removeAttr('align').removeAttr('style')
.wrap('<p />');
});
是否有更有效的方法来删除多个属性?
答案 0 :(得分:156)
答案 1 :(得分:1)
是的,您可以这样删除它:
$('#listing img').removeAttr('height align style');
您还可以按如下方式添加这些属性:
$('#listing img').attr({ height: "20", align: left }).css({ color: red, text-align: center });