0
我嘗試比較兩個數組找到一個或其中一個以上的比賽。 有人幫我嗎?如何比較值數組找到另一個陣列的一個或多個匹配?
$("button").click(function(i) {
var products = [2, 5, 6, 7, 200];
var item_id = [2, 1, 6, 200];
$.each(item_id, function() {
if ($.inArray(this, products) !== -1) {
alert('Match Prod: ' + this);
} else {
alert('Not Match: ' + this);
}
});
});
您至少需要兩個循環以查找匹配,同時從一個每個元素,並與其他比較。如果你嘗試一下併發布你遇到的錯誤會更好。 – Totoro