① 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;">