<script type="text/javascript"> function check(str) { if (escape(str).indexOf("%u")!=-1){ alert("不能含有汉字"); } if(str.match(/\D/)!=null){ alert(‘不能含有字母‘); } } </script>
js判断字符是否包含字母汉字
原文:http://www.cnblogs.com/chiangfai/p/5829085.html