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.
>大なり記号 ( ) はここでどのような違いをもたらしますか?
>
$('#someElement').find(">[someAttribute]")と同じですか$('#someElement').find("[someAttribute]")?
$('#someElement').find(">[someAttribute]")
$('#someElement').find("[someAttribute]")
いいえ: の直接の子である場合にのみ、要素を選択し#someElementます。
#someElement
意味的には、CSS 直接子セレクターに基づいています。
子セレクターのドキュメントを参照してください