好的,我在Typescript文件中有两个JQuery函数:
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('.scrollToTop').fadeIn();
} else {
$('.scrollToTop').fadeOut();
}
console.log('Scroll');
});
//Click event to scroll to top
$('#scrollToTopButton').on('click', function () {
console.log("Click");
})
窗口滚动功能完美运行。但是我没有得到点击事件。我试过$('#scrollToTopButton').click(function(){ ...
等等,似乎没有用。这是html:
<button type="button" class="btn scrollToTop" id="scrollToTopButton">
答案 0 :(得分:0)
等等,似乎没有用。
它应该工作。一些调试技巧
console.log($('#scrollToTopButton'))
button
标记。