复制代码 代码如下:
function checkFormat(str)
{
if (escape(str).indexOf("%u")!=-1)
alert("不能含有汉字");
else if(str.match(/\D/)!=null)
{
alert('不能含有字母');
}
}
时间: 2024-11-05 19:27:01
复制代码 代码如下:
function checkFormat(str)
{
if (escape(str).indexOf("%u")!=-1)
alert("不能含有汉字");
else if(str.match(/\D/)!=null)
{
alert('不能含有字母');
}
}