我想使用此代碼向下滾動到特定行,得到錯誤時嘗試使用動畫功能
var temp = "1000";
$(document).animate({scrollTop: $("'tr[data-id=\"" + temp + "\"]'").offset().top}, 'slow');
//also tried .position().top}, 'slow');
,但得到這個錯誤,
Uncaught Error: Syntax error, unrecognized expression: 'tr[data-id="1000"]'
的Html
<tr data-id="1000" class="Row" onclick="LoadA(1000)"></tr>
' 'tr'應該只是'tr'和']'',']' – Ryan
感謝,它給我的錯誤 - 遺漏的類型錯誤:無法讀取屬性 '頂' 的undefiened – Mathematics