1
我有以下查詢來選擇某種類型的所有input
和select
元素,我需要把它擴大到排除的父母有一定的類中的所有項目:jQuery選擇排除家長與特定類
$('input,select')
.not('[type="checkbox"],[type="radio"],[type="button"],[type="submit"]')
.not(':parent.no-field-hint') // <-- NEED TO FIX THIS
.on('focus', function() {
// do something
});
我該如何修改相關行?
謝謝,這工作 - 只需要刪除'點.no-field-hint' – Savage
哦,是啊!我的錯。很高興它對你有效 –