这是我第一次发帖提问,但我到处找不到答案。最近鼠标滚动停止在我的Word Chrome网站上运行。但它在Firefox中运行良好。我已经尝试停用插件,删除并重新安装,但我似乎无法解决它。有人能够协助或指出我正确的方向吗?我的网站是https://advicewrite.com.au 先感谢您。
答案 0 :(得分:0)
<div style="width:300px; height:200px; border:1px solid black; overflow:scroll">
Any thing long Code put here
</div>
<br />
<h3 style="display:none; color:red">Scroll event handled</h3>
<script type="text/javascript">
$(document).ready(function () {
$('div').scroll(function () {
$('h3').css('display', 'inline').fadeOut(1000);
});
});
</script>
当您在div中滚动时,滚动功能将起火