歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

jQuery獲取checkboxlist中的value值

先貼代碼

js代碼

$("#<%=cbxStyle.ClientID %> input:checkbox").each(function(){
                  if(this.checked==true)
                       alert($(this).parent("span").attr("alt"));
            });

.net控件

 <asp:CheckBoxList ID="cbxStyle" runat="server" RepeatColumns="3"
                                    RepeatDirection="Horizontal">
                                </asp:CheckBoxList>

c# 後台代碼

cbxStyle.DataSource = ds.Tables[0];
            cbxStyle.DataTextField = "stylename";
            cbxStyle.DataValueField = "styleid";
            cbxStyle.DataBind();

            foreach (ListItem li in cbxStyle.Items)
            {
                li.Attributes.Add("alt", li.Value);
            }

CheckboxList綁定數據後查看html代碼,發現沒有value值,只有text值,所以只能通過其他方式來給此控件加個屬性,然後通過此屬性來間接獲取值.

Copyright © Linux教程網 All Rights Reserved