输入框输入内容验证

if (Math.abs(parseInt((user_money*100)))!=user_money*100){
    //输入负数、汉字、字母、标点或者小数点多于两位提示错误
    //只允许输入数字,可带两位小数
    //输入错误时的代码
}else{
    //输入正确时的代码
}

 

posted @ 2015-09-11 09:46  Seekload  阅读(511)  评论(0编辑  收藏  举报