jQuery更改多个属性或替换整个html

前端之家收集整理的这篇文章主要介绍了jQuery更改多个属性或替换整个html前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道用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

原文链接:https://www.f2er.com/jquery/182357.html

猜你在找的jQuery相关文章