我正在使用以下代码:
$('html, body').animate({ scrollTop: $($(this).attr('href')).offset().top });
打字稿给我一条错误消息说:
The property 'top' does not exist on value of type 'Object'
我猜想 jQuery 定义文件中缺少一些东西。有没有其他人看到过这个问题,或者这是不是 jQuery 通常不使用的东西?这是我以前从未见过的。
了解更多信息。这是使用它的代码:
$.fn.buildTableOfContent = function () {
"use strict";
var h2 = this.find('h2');
if (h2.length > 0) {
var h1 = this.find('h1:first');
if (h1.length === 0) {
h1 = this.prepend('<h1>Help</h1>').children(':first');
}
var menu = h1.wrap('<div class="h1 with-menu"></div>')
.after('<div class="menu"><img src="/Content/images/menu-open-arrow.png" width="16" height="16"><ul></ul></div>')
.next().children('ul');
h2.each(function (i) {
this.id = 'step' + i;
menu.append('<li class="icon_down"><a href="#step' + i + '">' + $(this).html() + '</a></li>');
});
menu.find('a').click(function (event) {
event.preventDefault();
$('html, body').animate({ scrollTop: $($(this).attr('href')).offset().top });
});
}
return this;
};