① jmpress,js如何禁止鼠标的滚轮事件
对应的函数名是: removeEventListener
代码如下
document.getElementById("contentTable").removeEventListener('DOMMouseScroll', scrollFunc);
② js如何阻止页面往下滚动既阻止scroll事件
你把alert()改成return false;
你现在不行是因为执行你的方法后会进行事件冒泡,执行浏览器自带的滚动事件。
③ js 怎么禁止双击事件,或者把双击事件改成单击事件
<button onclick="test(1)" ondblclick="test(2)"></button><script language="javascript">var i = 1;function test(n) {i = n;var val = setTimeout("call();",250);if(i==2){clearTimeout(val);}}function call() {if(i==1){alert('click');}else if(i==2){alert('dblclick');}}</script>
解决但双击冲突的方法
④ js怎么禁用onclick事件
可以使用以下语句:
document.getElementById('cmd1').onclick=null
这样cmd1就禁用onclick了
⑤ 如何用js监听滚动条滚动事件
js监视滚动事件的函数是onscroll
js语法:element.onscroll = functionReference
html语法:<elementonscroll="myScript">
<!DOCTYPEhtml>
<htmllang="en">
<head>
<metacharset="UTF-8"/>
<style>
#container{
position:absolute;
height:auto;
top:0;
bottom:0;
width:auto;
left:0;
right:0;
overflow:auto;
}
#foo{
height:1000px;
width:1000px;
background-color:#777;
display:block;
}
</style>
</head>
<body>
<divid="container">
<divid="foo"></div>
</div>
<scripttype="text/javascript">
//js绑定你需要监控滚动事件的dom,也可以绑定document.body监控整个网页滚动
//也可以监控具体的dom滚动,像下面的containerId对象
document.getElementById('container').onscroll=function(){
console.log("scrolling");
};
</script>
</body>
</html>
⑥ 如图js怎么控制当里面的滚动滚动到底部的时候,不触发外面body的滚动事件
jq $().scroll(function(e){
e.stopPropagation()
})
⑦ js中如何禁用鼠标滚轮事件急,在线等!
如果使用的是IE直接使用下面代码就可以了,在body的onmousewheel事件中return false
<body onmousewheel="return false;">