2014-06-18 80 views
-1

我正在使用以下代碼來查找具有該屬性的特定行。這不是在Safari 5.1.7布勞爾的工作,它引發錯誤語法錯誤,無法識別的表達式:#groups TR [數據group_mandatory =「真」屬性等於選擇器無法在safari中識別5.1.7

$('#groups tr[data-group_mandatory="true"').each(function(){   

     // Some Logic here.   
    }); 
+2

應該是'$('#組TR [數據 - group_mandatory =「true」]')' –

+1

'#groups tr [data-group_mandatory =「true」]'' - 缺少']'? –

回答

1

你缺少右方括號,請更正如下圖所示:

$('#groups tr[data-group_mandatory="true"]') 
             ^-- bracket was missing 
+0

現在有效。非常感謝。 –

+0

很高興幫助你:) –

2

你應該仔細看了一下錯誤,你得到了。你的代碼中有錯字。你沒有關閉方括號的名稱數值選擇:

$('#groups tr[data-group_mandatory=true]').each(function(){   

    // Some Logic here.   
}); 
相關問題