用正则表达式判断字符串是汉字还是拼音的js函数代码
程序员文章站
2022-07-02 19:47:46
复制代码 代码如下: function checkformat(str) { if (escape(str).indexof("%u")!=-1) alert("不能含有汉...
复制代码 代码如下:
function checkformat(str)
{
if (escape(str).indexof("%u")!=-1)
alert("不能含有汉字");
else if(str.match(/\d/)!=null)
{
alert('不能含有字母');
}
}