这是我的旧代码,但使用 jquery 1.9 不起作用。
var interested = new Array();
$("input[name=interest]:checkbox:checked").each(function(i) {
interested.push($(this).attr("class"));
});
这是我的旧代码,但使用 jquery 1.9 不起作用。
var interested = new Array();
$("input[name=interest]:checkbox:checked").each(function(i) {
interested.push($(this).attr("class"));
});
试试这个代码工作演示
var interested = [];
$("input[name='interest'][type='checkbox']:checked").each(function() {
interested.push($(this).attr("class"));
});
试试如何:
var interested = [];
$('input[name=interest]:checked').each(function () {
interested.push($(this).attr('class');
});