javascript規定文字框不能夠輸入空格

admin發表於2017-02-11

本章節介紹一下如何限制文字框內不能夠輸入空格字元,其實在表單中機會百分之百都會有這樣的要求。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
</style>
<script type="text/javascript"> 
window.onload=function() {    
  var inputs=document.getElementsByTagName("input"); 
  for (var i=0;i<inputs.length; i++) {  
    if(inputs<i>.getAttribute("type")=="text") 
    inputs<i>.onkeyup=function(){ 
      this.value=this.value.replace(/(^\s+)|\s+$/g,""); 
    }
  }  
}
</script>
</head>
<body>
<input type="text" name="thetext" />
</body>
</html>
</i></i>

相關文章