标签:部分 string ring mod css type disabled style led
html部分
<td><input class="GoodNum" type="text"/></td>
js部分
$(".GoodNum").keyup(function(){//校验输入正整数
var tmptxt=$(this).val();
var reg = /^[1-9]\d*$/;
if(!reg.test(tmptxt)){
var txt = tmptxt.substring(0,tmptxt.length-1);
$(this).val(txt);
}
}).bind("paste",function(){
var tmptxt=$(this).val();
var reg = /^[1-9]\d*$/;
if(!reg.test(tmptxt)){
var txt = tmptxt.substring(0,tmptxt.length-1);
$(this).val(txt);
}
}).css("ime-mode", "disabled");
标签:部分 string ring mod css type disabled style led
原文地址:http://www.cnblogs.com/phermis/p/6761767.html