中文不能输入超过20,英文输入不能超过40个

来源:互联网 发布:免费数据接口 编辑:程序博客网 时间:2024/04/27 14:27
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script>
function check(){
var  newsTitle=document.getElementById("newsTitle").value;
//表单验证
if(getBLen(newsTitle)>40){
alert("标题不能大于40个字符!中文=20,英文40个");
return;
}
}
function  getBLen(str){
if (str == null) return 0;  
   if (typeof str != "string"){  
       str += "";  
   }  
   return str.replace(/[^\x00-\xff]/g,"01").length;  
}
</script>
</head>
<body>

<input type="text" id="newsTitle" onblur="check();" style="width:800px;height:100px;"/>

</body>


0 0