我似乎无法理解为什么我会收到此错误。我觉得这是一个常规的javascript函数。
$(document).ready(function () {
$(".linesresults input[type=submit]").click(function () {
console.log('here');
//$('.lineslistwrap').scrollTop($('.lineslistwrap').scrollTop() + $(this).parent().position().top);
$(this).parent().scrollIntoView();
});
});
答案 0 :(得分:3)
scrollIntoView是关于Dom元素的方法,parent()
返回jquery对象,所以试试。
$(this).parent()[0].scrollIntoView();