判斷文字框按鈕是否為空並給出提示

admin發表於2017-03-28

下面分享一段簡單的程式碼,能夠實現驗證文字框的內容是否為空的,如果為空的話能夠給出提示。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script type="text/javascript">
window.onload=function(){
  var obt=document.getElementById("bt");
  var otxt=document.getElementById("txt");
  obt.onclick=function(){
    if(otxt.value==''){
      alert("文字框內容為空");
      otxt.focus();
      return false;
    }
  }
}
</script> 
</head> 
<body> 
<input type="text" id="txt"/>
<input type="button" id="bt" value="檢視效果"/>
</body> 
</html>

相關文章