网页中使用了拖拽来排序,在firefox下拖拽会自动打开新标签,通过以下代码实现了全局禁止拖拽的默认事件。 document.body.ondrop = function (event) { event.preventDefault(); event.stopPropagation(); }