var x="abc"; //isNaN()函数判断是否是NaN if (isNaN(parseInt(x))) { alert("非数字"); } else{ alert("数字"); }JS中,如何判断一个被转换的数是否是NaN