.match()方法是对字符串的检测,不是长度,长度是.length
例子:
<script>
function ochange(){
var oinput=document.getElementById(‘a‘).value;
//if(oinput.length<5){alert(‘你输入的字段长度为‘+ oinput.length );}/*判断字符长度*/
if(oinput.match(‘ceshi‘)){
alert(‘true‘);
}
else{alert(‘false‘);}
}
</script>
<input type="text" id="a" onchange="ochange()"/>
原文:http://www.cnblogs.com/veison-syudy/p/4916817.html