日期:2014-05-16 浏览次数:20299 次
?
function isNumber(str){ if(""==str){ return false; } var reg = /\D/; return str.match(reg)==null; }