我是一个新手,并试图通过Greasemonky实现一个JS代码,自动滚动到页面的最底部。但是如果我向上滚动,它会再次滚动,所以我希望它在点击停止按钮后停止滚动。
// Scrolls till the bottom
setInterval(function(s){scrollBy(0,s||10000)},1000);
//script that creates a button
var input = document.createElement('input');
input.type = 'button';
input.value = 'Stop scrolling';
input.onclick = stopScroll;
document.body.appendChild(input);
//I need help here, not sure how to use clearInterval.
function stopScroll()
{
clearInterval();
}
答案 0 :(得分:3)
首先,声明变量间隔
var interval = setInterval(function(s){scrollBy(0,s||10000)},1000);
然后在功能中清除它
function stopScroll()
{
clearInterval(interval);
}