如何在脚本标记中设置类或样式?
我试着这样做买不起作用
<script>
$(function() {
$('.J_countdown2').countdown({
tmpl : '<span style='font-size: 50px; '>%{d}</span>days'
});
});
</script>
我填写style='font-size: 50px; '
答案 0 :(得分:1)
你可以加双引号或逃避单引号:
$(function() {
$('.J_countdown2').countdown({
tmpl : '<span style="font-size: 50px; ">%{d}</span>days'
});
});
或使用\
转义内部单引号:
tmpl : '<span style=\'font-size: 50px; \'>%{d}</span>days'
即使你也可以试试这个:
$('.J_countdown2').countdown({
tmpl : $('<span/>', {
class: "font50", // <----set class name
style : "font-size:50px", // <---style if you want against class
text : '%{d}days' //<-----put the text like this
})
});
其中font50
是类名:
.font50{
font-size: 50px;
}
答案 1 :(得分:0)
由于您已经在使用jQuery,最好的方法是.addClass("className")到您的元素并在外部CSS文件中设置所需的所有样式...: - )