<div id="chatCenterMembers">
<div class="chatmember">
<a title="Blah Blah Blah">
<div class="newchatmessage" style="display: block;"></div>
如何捕獲if語句中的可見div?jQuery if visible
我有$(this)
設置爲<div class="chatmember">
- 從頂部的第二行。
我一直在下面工作,但現在運氣到目前爲止。
if($(this+' a div.newchatmessage').filter(":visible")) {
以上只是滴出...
我也試過以下,並沒有對這種方法的任何詳細資料工作,要麼
if ($(this + 'a div.newchatmessage').is(':visible')) {
那裏的div與類newchatmessage? – Shef
@Wesley你可能是對的......但'this'可能不是一個jQuery變量,所以我想'$('一個div.newchatmessage',$(this))' –
Oops刪除我的評論太快了,我似乎記得之前使用過這種語法,但我不確定。 –