<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>檢查 Gridview 內的 Checkbox 是否有勾選與勾選數量</title>
</head>
<script src="lib/jquery-1.4.1.min.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
function CheckSelect()
{
// 取ID為GridView1內為checkbox且checked=true的元件
var len = $("#GridView1 input[type=checkbox][checked=true]").length;
if(len == 0)
{
alert("選中數量 = " + len + "\n請至少選擇一個!");
return false;
}
alert("選中數量 = " + len);
return true;
}
</script>
<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="BT_Check" runat="server" Text="檢查勾選" OnClientClick="return CheckSelect();" />
<asp:GridView ID="GridView1" runat="server">
<Columns>
<asp:TemplateField HeaderText="勾選">
<ItemTemplate>
<asp:CheckBox ID="CheckBox1" runat="server" />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</div>
</form>
</body>
</html>
原始文章出自於此
沒有留言:
張貼留言