我有頁的一部分這樣JQuery的翻轉表選擇
<div id="inbox">
<h1>Headline</h1>
<p>First paragraph</p>
<table>
<tbody>
<tr>
<td>table stuff</td>
</tr>
</tbody>
</table>
<p>Second paragraph</p>
</div>
我想處理程序分配給#inbox DIV不是表的一部分(孩子)內的所有內容。我試圖做一些像
$('#inbox:not(:has(table))').click(function(){
alert('hello inbox');
});
但是,這並不工作,所以我如何反轉#inbox中的表的選擇?