gpt4 book ai didi

javascript - 如何在脚本标签中设置类或样式?

转载 作者:行者123 更新时间:2023-12-03 12:07:06 25 4
gpt4 key购买 nike

如何在脚本标签中设置类或样式?

我尝试这样做,但没有成功

<script>
$(function() {
$('.J_countdown2').countdown({
tmpl : '<span style='font-size: 50px; '>%{d}</span>days'
});
});
</script>

我填写style='font-size: 50px; '

最佳答案

您可以添加双引号或转义单引号:

$(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;
}

关于javascript - 如何在脚本标签中设置类或样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25135392/

25 4 0