$("td[name=‘rates‘]").each(function () {
var temp = $(this).text().substr(0,$(this).text().length-1);
if (temp < 0) {
$(this).css("color","red");
} else {
$(this).css("color", "green");
}
});
时间: 2024-10-12 12:44:05