0
如果父td中的每個.itemToFilter子元都未通過測試(因此返回所有TRUE),則應執行alert('hello world')。但它不是!jQuery:遍歷子元素和布爾值
第一個IF語句正常工作,我已用警報對其進行了測試。但不是第二個。
var businessTypePullDownValue = $('.businessTypePullDown').val();
$('.businessTypeRow td').each(function() {
var foundOne = $(this).children('.itemToFilter').each(function() {
if(($(this).attr('value') == businessTypePullDownValue)) {
return true;
}
});
if(!foundOne) {
alert('hello world');
}
});
請提供HTML源 – ianace