There's no isNumeric() type of function, but you could add your own: function isNumeric(n) { return !isNaN(parseFloat(n)) && isFinite(n); }.
確定! 回上一頁