函數的作業

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
  function showDay(){
//    alert("hehe");
//  找到對應的標籤對象
    var inputObj = document.getElementById("month");
// 獲取input標籤數據
    var month = inputObj.value;
    if(month==1||month==3||month==5||month==7||month==8||month==10||month==12){
	  alert("本月是31天");
	} else if(month==4||month==6||month==9||month==11){
	  alert("本月是30天");
	} else if(month==2){
	  alert("本月是28天");
	}else{
	  alert("沒有該月份");
	}
  }
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
</head>

<body>
	月份:<input id="month" type ="text"/><input type="button" value="查詢" οnclick="showDay()" />
    
</body>
</html>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章