用正则表达式判断字符串是汉字还是拼音的js函数代码
代码如下:
function checkFormat(str) { if (escape(str).indexOf("%u")!=-1) alert("不能含有汉字"); else if(str.match(/\D/)!=null) { alert('不能含有字母'); } }
相关推荐
stulen 2020-08-15
fengzhiwu 2020-08-01
xiaobaif 2020-06-14
lemonzhangyan 2020-06-13
Crazyshark 2020-06-13
weikaixxxxxx 2020-06-13
有梦就能实现 2020-06-10
shengnanonly 2020-06-03
oraclemch 2020-05-30
poplpsure 2020-05-27
zuihaobushi 2020-04-30
luckymaoyy 2020-04-29
文山羊 2020-10-20
Tristahong 2020-10-14
xiaoseyihe 2020-08-11
amberom 2020-08-03
pythonxuexi 2020-07-30
leoaran 2020-07-21
littie 2020-07-19