Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将从服务器接收到的数据附加到我的 html 页面上的 div 中。我可以做到这一点
$('#divImAddingTo').append(infoBeingAppended);
我想将基于 css 的样式应用于要附加的数据。我不确定如何完成。
我试过了
$('#divImAddingTo').append(infoBeingAppended).toggleClass = 'className';
这是行不通的。
一如既往地非常感谢任何帮助。
尝试
$('#divImAddingTo').append($('<div class=classname>'));
然后
$('#divImAddingTo div').html(contentToAdd);
.append()注意和之间的区别.html()
.append()
.html()
你试过这样吗?
$('#divImAddingTo').append($(infoBeingAppended).toggleClass('className'));