jquery获取所有选中的checkbox的ID

    //获取所有选中的CheckBox的id
function getCheckBox() {
var spCodesTemp = "";
$("input:checkbox[name=IsOnSell]:checked'").each(function(i) {
if (0 == i) {
spCodesTemp = $(this).attr("id");
} else {
spCodesTemp += ("," + $(this).attr("id"));
}
});
alert(spCodesTemp);
}
上一篇:使用JQuery获取被选中的checkbox的value值


下一篇:iframe跨域访问