TypeError: $(…).parents(…).size is not a function

后端 未结 2 1718
长发绾君心
长发绾君心 2020-12-11 00:29

I have a basic script which allows me to click on the website\'s background, excluding #content.

After upgrading jQuery to 3.1.0 version, I get this err

2条回答
  •  一向
    一向 (楼主)
    2020-12-11 01:22

    Please use 'length' like @charlietfl suggested. But I was unable to trace from where the error was getting displayed, hence I ended up with below.

    (function ($) {
        $.fn.extend({
            size: function () {
                return $(this).length;
            }
        });
    })(jQuery);
    

提交回复
热议问题