0
當我按下一個獲取複選框值的按鈕時,我想要隱藏多個元素,並且如果複選框被選中,它將被隱藏。如何隱藏多個元素
我有一個代碼,但它只是第一個元素
var checkedInputs = $("input:checked");
var test = "";
$.each(checkedInputs, function(i, val) {
test += val.value+",";
});
test = test.substring(0,(test.length-1));
$("#numRow"+test).hide('slow'); // it should to hide multiple elements, but just work with the first value
我也試圖與陣列工作,但它doen't工作了。
var numMsj =[1, 2, 4, 22, 44,90, 100];
$.each(numMsg, function (ind, elem) {
$("#numRow"+elem).hide('slow');
});
謝謝!它工作得很好! – Kakitori