为什么 HTML5 拖放功能在 Firefox 中不起作用?

Why doesn#39;t HTML5 drag and drop work in Firefox?(为什么 HTML5 拖放功能在 Firefox 中不起作用?)
本文介绍了为什么 HTML5 拖放功能在 Firefox 中不起作用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我已将事件绑定到不同的元素,当我在除 Firefox 之外的所有浏览器中拖动它们时,它按预期工作.然而,在 Firefox 中,它根本不起作用.唯一触发的事件是 dragstart,其他事件都不会触发.怎么回事?

I have bound events to different elements, and when I drag them in all browsers, except Firefox, it works as expected. In firefox, however, it doesn't work at all. The only event that fires is dragstart, and none of the other events fire. What's going on?

推荐答案

我没有使用 jQuery,所以删除了 originalEvent 部分并将格式更改为文本(或 IE 有问题),并且它有效:

I'm not using jQuery, so removed the originalEvent portion and changed the format to text (or IE had issues), and it works:

event.dataTransfer.setData('text', 'anything');  

在 drop 事件中确保调用:

In the drop event make sure to call:

event.preventDefault();

或者它会跳转到anything.com.

Or it will jump to anything.com.

这篇关于为什么 HTML5 拖放功能在 Firefox 中不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Drag amp; Drop with Protractor by Repeater(拖动amp;通过中继器使用量角器掉落)
Getting the position of the element in a list when it#39;s drag/dropped (ui.sortable)(拖放时获取元素在列表中的位置(ui.sortable))
Detecting HTML5 Drag And Drop support in javascript(在 javascript 中检测 HTML5 拖放支持)
HTML5 drop event doesn#39;t work unless dragover is handled(除非处理了拖动,否则 HTML5 放置事件不起作用)
How to use jQuery#39;s drop event to upload files dragged from the desktop?(如何使用 jQuery 的 drop 事件上传从桌面拖动的文件?)
Drop image into contenteditable in Chrome to the cursor(将图像拖放到 Chrome 中的 contenteditable 到光标处)