欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Js获取CheckBook被选中的值

程序员文章站 2022-03-02 12:09:42
...

aspx代码

<asp:CheckBoxList runat="server" ID="cbWoods" RepeatDirection="Horizontal"  RepeatLayout="Flow" CssClass="cbPr">
  <asp:ListItem Value="1" wValue="1">1</asp:ListItem>
  <asp:ListItem Value="3" wValue="3">3</asp:ListItem>
  <asp:ListItem Value="5" wValue="5">5</asp:ListItem>
  <asp:ListItem Value="7" wValue="7">7</asp:ListItem>
  <asp:ListItem Value="9" wValue="9">9</asp:ListItem>
</asp:CheckBoxList>

js代码

var woods = function () {
  var str = "";
  $("input[id^=cbWoods]").each(function () {
    if (this.checked) {
      if (str != "") {
        str += ",";
      }
      str += $(this).parent("span").attr("wValue");
    }
  });            
  return str;
}

 

转载于:https://my.oschina.net/jokeny/blog/2120297