禁止在当前页拖拽内容打开,禁止拖拽图片在新窗口打开-解决办法。
时间:2017-07-28 18:08:34
收藏:0
阅读:209
document.ondragover = function (e) { e.preventDefault(); }; document.ondrop = function (e) { e.preventDefault(); }; $(document).on("dragstart", function (e) { return false; });
原文:http://www.cnblogs.com/webSong/p/7251628.html
评论(0)