本篇文章给大家带来的内容是关于原生js如何实现拖拽事件(代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .box{ width:200px; height:200px; background-color: red; position: absolute; left:0; top:0; } </style> </head> <body> <p class='box'></p> <script> var box = document.querySelector('.box'); box.onmousedown = function(e){ var event = e || window.event; var target = event.target || event.srcElement; var disX = event.clientX - target.offsetLeft; var disY = event.clientY - target.offsetTop; document.onmousemove = function(event){ // 注意:这里要有自己的事件对象 target.style.left = event.clientX - disX + 'px'; target.style.top = event.clientY - disY + 'px'; document.onmouseup = function(){ document.onmousedown = null; document.onmousemove = null; } } } </script> </body> </html>
相关推荐:
以上是原生js如何实现拖拽事件(代码)的详细内容。更多信息请关注PHP中文网其他相关文章!