我目前正面临调整大小后滚动事件的问题。
例如
$(window).on("resize scroll",detectScrollingForSectionHeaderWithHyperLink2).trigger("scroll")
function detectScrollingForSectionHeaderWithHyperLink2()
{
console.log("cccc")
}
每当浏览器滚动或调整大小时,上面的脚本将执行函数detectScrollingForSectionHeaderWithHyperLink2。
在我的测试中,在页面加载后,每次我滚动函数detectScrollingForSectionHeaderWithHyperLink2执行得很好。但是在我调整浏览器并滚动鼠标后,无法捕获滚动事件。我希望有人可以对这个问题发表意见。