标签: javascript jquery html5 jquery-selectors
如何选择其中包含<table>和<input>标记的所有<section>代码 -by jQuery?
<table>
<input>
<section>
类似的东西:
var tables_with_input = $( "table" that_contain input,section) ///pseudo code
答案 0 :(得分:3)
您可以使用:has,它会检查匹配的元素是否包含某些元素等。
:has
$('table:has(input, section)')
FIDDLE
答案 1 :(得分:1)
var tables_with_input = $(context).find('table').has('input');