日期:2014-05-16 浏览次数:20474 次
function check(str){ return /^[a-z\u4e00-\u9fa5\d]+$/.test(str)&& !!str.replace(/[^\x00-\xff]/g,"**").match(/^.{4,20}$/) } alert( check("测试测试测试12aA") );