input框输入小写自动变大写

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

posted @ 2018-05-30 14:19  wutao1234  阅读(286)  评论(0编辑  收藏  举报