当前位置: 代码迷 >> JavaScript >> 怎么用JS判断用户输入了多少个字节
  详细解决方案

怎么用JS判断用户输入了多少个字节

热度:76   发布时间:2012-10-15 09:45:24.0
如何用JS判断用户输入了多少个字节

<HTML>
	<HEAD> 
		<TITLE>test</TITLE> 
		<meta http-equiv=content-type content="text/html; charset=UTF-8"> 
		<script language=javascript> 
			function test(){ 
				var testInput=document.getElementById("test").value; 
				var len=testInput.len() ;
				alert(len);
				if(len>600)
				alert("超过限制"); 
			}		
			String.prototype.len = function() {
				//xxx表示一个字符占的长度(字节数).utf-8是3个
				return this.replace(/[^\x00-\xff]/g, 'xxx').length; 
			}; 
		</script> 
	</head> 
	<body> 
		<div>
			<input type=text id="test" />
			<input type=button value="测试" onclick=test()>
		</div>
	</body> 
</html>
?
  相关解决方案