input框输入小写自动变大写

//小写字母自动转换大写字母
$("#carno_").bind("input propertychange", function() {
var str=$("#carno_").val();
str=str.toUpperCase();
$("#carno_").val(str);
});

猜你喜欢

转载自www.cnblogs.com/wutao123/p/9110640.html
今日推荐