gpt4 book ai didi

javascript - Angular 4 中的脚本在更改 View 后不起作用

转载 作者:行者123 更新时间:2023-12-03 03:43:02 25 4
gpt4 key购买 nike

在我的 Angular 4 应用程序中,我有一些脚本,当我第一次加载时一切正常,但是当将 View 更改为我的应用程序的其他组件并返回主页时,所有脚本都损坏了,无法工作。在控制台日志中发送消息,例如这个函数滚动顶部

$(window).scroll(function() {
var wScroll = $(this).scrollTop(), scrollAmount = 150;

if (wScroll > scrollAmount) {
$(".button__scroll--up").addClass("is_showing");
} else {
$(".button__scroll--up").removeClass("is_showing");
}

});

$('.button__scroll--up').click( function(){
$('html , body').animate({scrollTop: 0},1000);
})

并且控制台日志发送此

Uncaught TypeError: Cannot read property 'top' of undefined
at HTMLDivElement.<anonymous> (efects-styles.js:58)
at HTMLDivElement.dispatch (jquery.min.js:3)
at HTMLDivElement.r.handle (jquery.min.js:3)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invokeTask (polyfills.bundle.js:2839)
at Zone.webpackJsonp.../../../../zone.js/dist/zone.js.Zone.runTask (polyfills.bundle.js:2606)
at ZoneTask.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneTask.invokeTask [as invoke] (polyfills.bundle.js:2913)
at invokeTask (polyfills.bundle.js:3779)
at HTMLDivElement.globalZoneAwareCallback (polyfills.bundle.js:3797

请帮帮我,谢谢!!

最佳答案

这是因为 Angular 仅加载初始 View 中的 DOM 元素。您需要编写一个脚本,以便在路线更改时重新运行脚本。

我解决这个问题的方法是绑定(bind)到路由器事件,当路由发生变化时,使用 jQuery AJAX 获取脚本,并运行结果。

关于javascript - Angular 4 中的脚本在更改 View 后不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45533184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com