我正在使用以下代碼來查找具有該屬性的特定行。這不是在Safari 5.1.7布勞爾的工作,它引發錯誤語法錯誤,無法識別的表達式:#groups TR [數據group_mandatory =「真」屬性等於選擇器無法在safari中識別5.1.7
$('#groups tr[data-group_mandatory="true"').each(function(){
// Some Logic here.
});
我正在使用以下代碼來查找具有該屬性的特定行。這不是在Safari 5.1.7布勞爾的工作,它引發錯誤語法錯誤,無法識別的表達式:#groups TR [數據group_mandatory =「真」屬性等於選擇器無法在safari中識別5.1.7
$('#groups tr[data-group_mandatory="true"').each(function(){
// Some Logic here.
});
你缺少右方括號,請更正如下圖所示:
$('#groups tr[data-group_mandatory="true"]')
^-- bracket was missing
現在有效。非常感謝。 –
很高興幫助你:) –
你應該仔細看了一下錯誤,你得到了。你的代碼中有錯字。你沒有關閉方括號的名稱數值選擇:
$('#groups tr[data-group_mandatory=true]').each(function(){
// Some Logic here.
});
應該是'$('#組TR [數據 - group_mandatory =「true」]')' –
'#groups tr [data-group_mandatory =「true」]'' - 缺少']'? –