如何在Javascript / Json代码中设置样式

时间:2018-04-16 09:04:40

标签: javascript css json

我正在尝试在我的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">&times;</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');
}

1 个答案:

答案 0 :(得分:1)

由JS创建的任何元素(在大多数情况下)都像加载文档的任何其他元素一样,因此您只需将<style>元素与引用该类的CSS一起使用。

如果需要,您还可以使用style属性。

More info about CSS