DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> checkbox選中與未選中判斷示例
checkbox選中與未選中判斷示例
編輯:關於JavaScript     
$(document).ready(function() {
  var flag = $("#protTuanFlag").val();
  if(flag==1){
    document.getElementById("tuan").checked=true;
  };
  $("#tuan").click(function() {
    if(document.getElementById("tuan").checked){
      //alert("選中");
       document.getElementById("tuan").value = 1;
       // alert(document.getElementById("tuan").value);
    }else{
      //alert("未選中");
       document.getElementById("tuan").value = 0;
       //alert(document.getElementById("tuan").value);
    }
  });
})
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved