标签:attr paste int 数字 文本框 att nbsp 小数点 event
//只能输入数字
$(".int").attr("onkeyup", "this.value=this.value.replace(/[^\\\d]/g,‘‘)");
$(".int").attr("onkeypress", "onlyNumber(event);");
$(".int").attr("onafterpaste", "onlyNumber(event);");
//只能输入小数点
$(".decimal").attr("onkeyup", "this.value=this.value.replace(/[^\\\d\\\.]/g,‘‘)");
$(".decimal").attr("onkeypress", "onlyNumber(event);");
$(".decimal").attr("onafterpaste", "onlyNumber(event);");
标签:attr paste int 数字 文本框 att nbsp 小数点 event
原文地址:http://www.cnblogs.com/yhyl/p/7700191.html