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
上一篇: WPF ListBox获取选中的值
下一篇: 限制中文输入长度