2012-09-13 47 views

回答

1

您可以使用javascript來驗證複選框列表。請找到下面的代碼,以得到一個想法:

<script type = "text/javascript"> 
var minOccurance= 1 
function Validate() 
{ 
    var yourCheckboxList= document.getElementById("<%=CheckBoxList1.ClientID%>"); 
    var checkbox = yourCheckboxList.getElementsByTagName("input"); 
    var counter=0; 
    for (var i=0;i<checkbox.length;i++) 
    { 
     if (checkbox[i].checked) 
       counter++; 
    } 

    if(minOccurance>counter) 
    { 
     alert("Please select atleast " + minOccurance + " item(s)"); 
     return false; 
    } 
    return true; 
} 
</script> 

希望你能解決這個問題。

相關問題