我想知道用jQuery更改多个属性是否更有效/更快,或者只是一次更换所有的html。这是我目前使用的代码。
// shows the table and changes the image to up showTable = function(tableId){ $('#img' + tableId).attr("src",images["up"]).attr("alt","Hide Table").attr("title","Hide Table"); $('#' + tableId).fadeIn(250); }
还是会更快?
// shows the table and changes the image to up showTable = function(tableId){ $('#img' + tableId).replaceWith('some html'); $('#' + tableId).fadeIn(250); }
解决方法
$('#greatphoto').attr({ alt: 'Beijing Brush Seller',title: 'photo by Kelly Clark' });
示例取自jQuery Documentation。