我正在使用最接近的方法在 div 中查找属性:
.closest($('div[my-attribute]'));
该属性也可以存在于 li 元素中:
.closest($('li[my-attribute]'));
如果在 div 中找不到属性,那么在 'li' 中找到属性的优雅方法是什么?
就像是:
var closest = myDiv.closest($('div[my-attribute]'));
if(closest == null){
closest = myDiv.closest($('li[my-attribute]'));
}