oK,這很奇怪......我有相同的代碼在if語句中工作得很好......但是一旦它碰到else語句就不會觸發parentsUntil
? ???jQuery parents直到沒有在其他條件下射擊
if(sArray.length > 400){
$.each(sArray, function(key, item){
$("!#"+item).parentsUntil(".#jstree").filter(".#jstree-closed").each(function() {
$aTree.jstree("close_all", this);
});
});
else{
$.each(sArray, function(key, item){
$("!#"+item).parentsUntil(".#jstree").filter(".#jstree-closed").each(function() {
//IT IS NOT MAKING IT HERE
$aTree.jstree("close_all", this);
});
});
}
控制檯顯示任何錯誤? – tymeJV
沒有錯誤顯示 –