Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这有效:
$('myform').up('div[display:none]')
我正在寻找第一个没有显示的祖先 div 元素,但是我想知道这是否是跨浏览器。是吗?
谢谢。
卡尔..
CSS 选择器用于属性而[]不是样式。
[]
你可以做
$('myform').up('div[style~="display:none"]')
但它不会像你想象的那么可靠