js中身份证含有小写 x时,自动转为大写(jsp)
Posted 无畏迎风
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中身份证含有小写 x时,自动转为大写(jsp)相关的知识,希望对你有一定的参考价值。
1.js方法封装
MC.upperCase=function chang(domId){
$(domId).on("input propertychange",function(){
var a=$(this).val();
a=a.toUpperCase();
$(domId).val(a)
}) ;
}
2.方法调用
MC.upperCase(‘#female_zjhm‘);
以上是关于js中身份证含有小写 x时,自动转为大写(jsp)的主要内容,如果未能解决你的问题,请参考以下文章