0
在jquery中我怎麼能比較兩個數組值。下面是我的腳本我怎麼能比較兩個數組值
var corrAns = ['chBox_2','chBox_4','chBox_6','chBox_7','chBox_9'];
var userAns = new Array();
$("input:checkbox").change(function() {
var someObj = {};
someObj.userAns = [];
$("input:checkbox").each(function() {
if ($(this).is(":checked")) {
someObj.userAns.push($(this).attr("id"));
} else {
}
});
alert(someObj.userAns);
});
感謝, 桑卡爾
創建一個小提琴以獲得快速幫助,但嘗試jQuery inArray –