分类分类
更新时间:2026-08-08 14:42:04作者:zhao
这篇文章主要介绍了jQuery检测输入的字符串包含的中英文的数量的实现方法,非常的实用,这里推荐给小伙伴,有需要的朋友可以参考下。
方法一:
$(document).ready(function(){
vartempStr="abcdefg我们都是好孩子";
varpattern_char=/[a-zA-Z]/g;
varpattern_chin=/[u4e00-u9fa5]/g;
varcount_char=tempStr.match(pattern_char).length;
varcount_chin=tempStr.match(pattern_chin).length;
alert(count_char+'_'+count_chin);//7-7
});
方法二:
<scripttype="text/javascript">
$(document).ready(function(){
$("#TextBox1").blur(function(){
vartem=$("#TextBox1").val();
varjc_shu=/[0-9]/g;
varjc_yin=/[a-zA-Z]/g;
varcount_shu=tem.match(jc_shu).length;
varcount_yin=tem.match(jc_yin).length;
$("#ts1").text(count_shu+"___"+count_yin);
});
});
</script>
</head>
<body>
<formid="form1"runat="server">
<div>
<asp:TextBoxID="TextBox1"runat="server"></asp:TextBox>
<divid="ts1"></div>
<divid="ts2"></div>
<br/>
<divclass="newStyle1"style="height:506px;width:388px"></div>
</div>
</form>
</body>
以上所述就是本文的全部内容了,希望大家能够喜欢。
相关
代号97动作射击277.47 Mv1.0.72026-08-08
下载日本事故物件监视协会3冒险游戏170.33 MBv1.0.42026-08-08
下载你牛你来休闲益智116.37 MBv1.0.22026-08-08
下载文字密室逃脱手机版冒险游戏255.16 MBv1.62026-08-07
下载苏丹的游戏手机版角色扮演1.02 GBv1.0.62026-08-07
下载超市大亨3D手游经营养成253.14 MBv10.252026-08-07
下载你只能推搡动作射击44.62 MBv1.102026-08-07
下载仙逆本尊手游角色扮演298.41 Mv0.0.42026-08-07
下载天使帝国4手机版角色扮演837.88 Mv1.02026-08-07
下载丹墨三国弈手机版策略游戏2.14 GBv1.0.02026-08-07
下载CM语音App社交通讯95.16 Mv8.16.02026-08-07
下载光氪灵动app实用工具7.6 Mv1.2.12026-08-07
下载










