Object#<object>没有方法'scrollIntoView'</object>

时间:2013-11-26 19:09:03

标签: javascript jquery

我似乎无法理解为什么我会收到此错误。我觉得这是一个常规的javascript函数。

 $(document).ready(function () {
        $(".linesresults input[type=submit]").click(function () {
            console.log('here');
            //$('.lineslistwrap').scrollTop($('.lineslistwrap').scrollTop() + $(this).parent().position().top);
            $(this).parent().scrollIntoView();
        });
    });

1 个答案:

答案 0 :(得分:3)

scrollIntoView是关于Dom元素的方法,parent()返回jquery对象,所以试试。

$(this).parent()[0].scrollIntoView();