我的jQuery脚本有问题。我使用函数append将一个新的DIV添加到另一个DIV中,但CSS样式不会选择声明的DIV类。
例如:
<style">
.example { background-color:#00000; }
</style>
$('#test).append('<div class="example"></div>');
我用以下内容加载了样式表:
<link rel="stylesheet" type="text/css" href="./css/example.css">
答案 0 :(得分:2)
您可以尝试以下操作:
$('#test').append($('<div></div>').attr('class', 'example'));
或者
$('#test').html('<div class="example"></div>');