如果跨度的内容大于1,我正在尝试更改跨度的样式。我有以下代码:
$(document).ready(function(){
if ($(".over").length > 0) {
$(this).css("font-weight", "bold");
$(this).css("color", "red");
}
else {
$(this).css("font-weight", "normal");
}
});
span 标签中的数字是 0 到 1。如果跨度内的数字大于 1,我想将跨度(数字)的内容更改为粗体并使其变为红色。不确定长度或值是否可以解决问题