Html禁用拖拽功能

1.如何禁用页面元素拖出去

οndragstart="return false;" //禁止鼠标拖动,如拖动图片、连接等

例如:

<body οndragstart="return false;" οncοntextmenu="return false;">

 

2.如何禁用拖元素进入页面

<script>
document.ondrop = function(event) {
return false;
};
document.ondragenter  = function(event) {
return false;
};
document.ondragover  = function(event) {
return false;
};

</script>

 

参考资料:

https://blog.csdn.net/OrangeJuiceMe/article/details/64125068

https://cloud.tencent.com/developer/article/1476542

posted @ 2020-06-05 19:59  一叶知秋,见微知著  阅读(4017)  评论(0编辑  收藏  举报