我正在尝试在我的javascript / json代码中设置一个div但是无法做到。在我的代码中有一个名为cart-total
的div,我试图给出一些样式.Below是其中的一部分我的代码有cart-total
div。如何为cart-total
if (json['success']) {
$('#content').parent().before('<div class="alert alert-success"><i class="fa fa-check-circle"></i> ' + json['success'] + ' <button type="button" class="close" data-dismiss="alert">×</button></div>');
// Need to set timeout otherwise it wont update the total
setTimeout(function () {
$('#cart > button').html('<span id="cart-total"><i class="fa fa-shopping-cart"></i> ' + json['total'] + '</span>');
}, 100);
$('html, body').animate({ scrollTop: 0 }, 'slow');
$('#cart > ul').load('index.php?route=common/cart/info ul li');
}
答案 0 :(得分:1)
由JS创建的任何元素(在大多数情况下)都像加载文档的任何其他元素一样,因此您只需将<style>
元素与引用该类的CSS一起使用。
如果需要,您还可以使用style
属性。