//只能输入数字,没有小数点
onkeyup="this.value=this.value.replace(/\D/g,‘‘)"
//只能输入数字,有小数点
onkeyup="this.value=this.value.replace(/[^\d\.]/g,‘‘);"
//禁止输入空格
onkeyup="this.value=this.value.replace(/^ +| +$/g,‘‘)"
标签:gpo post 限制 输入 key val class value replace
//只能输入数字,没有小数点
onkeyup="this.value=this.value.replace(/\D/g,‘‘)"
//只能输入数字,有小数点
onkeyup="this.value=this.value.replace(/[^\d\.]/g,‘‘);"
//禁止输入空格
onkeyup="this.value=this.value.replace(/^ +| +$/g,‘‘)"
标签:gpo post 限制 输入 key val class value replace
原文地址:http://www.cnblogs.com/miaSlady/p/8039405.html