我使用了这个 javascript 函数:
$(document).ready(function(){
$("td").each(function() {
if (parseInt($(this).text()) > 0) {
$(this).css("text-align", "right");
}
});
});
这样,所有数字都右对齐。但我希望输入的字符串应该左对齐。我认为通过使用 NaN 是可能的,但我不知道如何使用它。有人可以告诉我使用 NaN 或其他功能的方法吗?