"/[^0-9]+/"
使用计数器法function checkNum(){var num="1234567890"str="要检查字符串"count=0for(var i=0;i{ if(num.indexOf(str.charAt(i))==-1) { count++ }}if(count!=0){ alert("提示语!") return false}else{ return true}}
/^\d+$/