次のコードがあります。
$(document).ready(function(){
$('#listing img')
.attr('width', 250)
.removeAttr('height').removeAttr('align').removeAttr('style')
.wrap('<p />');
});
複数の属性を削除するより効率的な方法はありますか?
次のコードがあります。
$(document).ready(function(){
$('#listing img')
.attr('width', 250)
.removeAttr('height').removeAttr('align').removeAttr('style')
.wrap('<p />');
});
複数の属性を削除するより効率的な方法はありますか?
回答:
はい、その方法で削除できます。
$('#listing img').removeAttr('height align style');
次のようにこれらの属性を追加することもできます。
$('#listing img').attr({ height: "20", align: left }).css({ color: red, text-align: center });