Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
借助 Mozilla,我可以拖放 DOM 节点元素,这要归功于application/x-moz-node类型。Chrome、Opera等有没有类似的类型?
application/x-moz-node
谢谢。
如果您希望跨浏览器的拖放行为一致,我建议您使用jQueryUI。使用Draggable和Droppable,他们已经为您完成了所有艰苦的工作。
您可以使用 Modernizr.draganddrop 来检测 HTML 5 原生拖放功能。
如果浏览器支持此功能。可以使用 draggable=true 设置节点可拖动。否则,需要使用 JQuerUI 来支持。