0
我在一個div標籤內使用一個選中的列表框,我想驗證已選中的列表框。我怎樣才能做到這一點?如何將所需的字段驗證程序添加到選中的ListBox?
我在一個div標籤內使用一個選中的列表框,我想驗證已選中的列表框。我怎樣才能做到這一點?如何將所需的字段驗證程序添加到選中的ListBox?
您可以使用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>
希望你能解決這個問題。
你想驗證什麼? – billy