我循环遍历div元素数组&试图隐藏它和它的孩子`div
function hideDivEle(divList) {
if (divList.Length === '') {
// Some code to restore all the div's back
} else {
// Hide all the required divs
for (var i = 0; i < divList.length; i++) {
// $(divList[i]).hide().fadeIn(450);
$(divList[i]).css('display','none');
}
}
}
答案 0 :(得分:3)
您需要使用正确的选择器,ID Selector需要在#
前加上Class Selector前缀.
假设您打算使用ID Selector,请使用以下代码
$('#' + divList[i]).hide(); //Simple use hide() instead of .css('display','none')