<asp:CheckBoxList runat="server" ID="chkDemo" RepeatDirection="Horizontal" RepeatLayout="Flow"> <asp:ListItem Text="測(cè)試A" Value="A"></asp:ListItem>
<asp:ListItem Text="測(cè)試B" Value="B"></asp:ListItem>
<asp:ListItem Text="測(cè)試C" Value="C"></asp:ListItem>
<asp:ListItem Text="測(cè)試D" Value="D"></asp:ListItem>
<asp:ListItem Text="測(cè)試E" Value="E"></asp:ListItem>
</asp:CheckBoxList>
當(dāng)瀏覽器呈現(xiàn)這段代碼后,我們?cè)倏纯词鞘裁礃拥腍tml腳本:
<table id="chkDemo" border="0">
<tr><td><input id="chkDemo_0" type="checkbox" name="chkDemo$0" /><label for="chkDemo_0">測(cè)試A</label></td>
<td><input id="chkDemo_1" type="checkbox" name="chkDemo$1" /><label for="chkDemo_1">測(cè)試B</label></td>
<td><input id="chkDemo_2" type="checkbox" name="chkDemo$2" /><label for="chkDemo_2">測(cè)試C</label></td>
<td><input id="chkDemo_3" type="checkbox" name="chkDemo$3" /><label for="chkDemo_3">測(cè)試D</label></td>
<td><input id="chkDemo_4" type="checkbox" name="chkDemo$4" /><label for="chkDemo_4">測(cè)試E</label></td> </tr></table>
這段Html腳本會(huì)因?yàn)镽epeatLayout的設(shè)置有所差異,但是都有一個(gè)共同點(diǎn),就是 生成的CheckBox沒(méi)有value屬性,
所以在客戶端用js是沒(méi)辦法獲取值的
為了解決這個(gè)問(wèn)題,我們需要擴(kuò)展一下CheckBoxList:這是我在CodeProject上找到的源碼,時(shí)間久了,鏈接就不貼了吧。
代碼如下:
[ToolboxData("<{0}:CheckBoxListEx runat=\"server\"></{0}:CheckBoxListEx>")]
public class CheckBoxListEx : CheckBoxList,IRepeatInfoUser
{
void IRepeatInfoUser.RenderItem(ListItemType itemType, int repeatIndex, RepeatInfo repeatInfo, HtmlTextWriter writer)
{
string clientID = UniqueID + this.ClientIDSeparator + repeatIndex.ToString(NumberFormatInfo.InvariantInfo); //varwriter.WriteBeginTag("input");
writer.WriteAttribute("type", "checkbox");
writer.WriteAttribute("name", UniqueID + this.IdSeparator + repeatIndex.ToString(NumberFormatInfo.InvariantInfo));
writer.WriteAttribute("id", clientID);
writer.WriteAttribute("value", Items[repeatIndex].Value);
if (Items[repeatIndex].Selected)
writer.WriteAttribute("checked", "checked");System.Web.UI.AttributeCollection attrs = Items[repeatIndex].Attributes;
foreach (string key in attrs.Keys)
{
writer.WriteAttribute(key, attrs[key]);
}
writer.Write("/>");
writer.Write("<label for='" + clientID + "'>");
writer.Write(Items[repeatIndex].Text);
writer.Write("</label>");}
上邊的這段代碼是我經(jīng)過(guò)修改的,與原著中有些差別:clientID的生成以及Checked屬性的添加等,我想這段代碼不需要再詳細(xì)的講解了吧。
把它編譯成單獨(dú)的類,在Toolbox上會(huì)自動(dòng)出現(xiàn),像使用那個(gè)正常的CheckBoxList一樣,拖動(dòng)到頁(yè)面就可以了。
在客戶端,我們js取值大致如下:
代碼如下:
<script>
function getDemoValue()
{ var els = document.getElementById("chkDemo"); var vals= ''; if (els != null) { var chks = els.getElementsByTagName("input"); for (var k = 0, len = chks.length; k < len; k++) { var chk = chks[k]; if (chk != null && chk.type == 'checkbox' && chk.checked) { vals+= ',' + chk.value; } } }
if(vals.length>1)
vals = vals.substring(1);
return vals;
}
</script>
結(jié)束聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com