2 つの配列を比較して、それらの 1 つまたは複数の一致を見つけようとします。誰か助けてください。
$("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);
}
});
});