setCapture 文字被选中的时候拖拽阻止系统默认事件,chr和IE都可以,火狐直接就没有拖拽效果 10
<style>#div1{width:100px;height:100px;background:red;position:absolute;top:100px;}</s...
<style>#div1{width:100px;height:100px;background:red;position:absolute;top:100px;}</style><script>window.onload=function(){ var oDiv=document.getElementById('div1') oDiv.onmousedown=function(ev){ var ev=ev||event; var disX=ev.clientX-oDiv.offsetLeft; var disY=ev.clientY-oDiv.offsetTop; if(oDiv.setCapture){ oDiv.setCapture() } document.onmouseover=function(ev){ var ev=ev||event; oDiv.style.left=ev.clientX-disX+'px'; oDiv.style.top=ev.clientY-disY+'px'; } document.onmouseup=function(){ document.onmouseover=document.onmouseup=null; if(oDiv.releaseCapture){ oDiv.releaseCapture() } } return false } }</script></head><body><div id="div1"></div><p>asfasdfdasgdsgsd</p></body>
展开
1个回答
展开全部
兼容问题,火狐遵循W3C标准,在火狐下使用Firebug调试下,错误部分会有提示的。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询