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.
我有两个 HTML5 拖放的主要交易破坏者。首先是我只想看到鬼元素。第二个是我想在拖动元素时使用普通光标。
<div draggable="true">DRAG TEST</div>
小提琴(仅限 webkit)
您可以在拖动时设置光标样式,
$(".class").draggable({ revert: true, revertDuration: 1000, cursor: "move" }); cursor: "move", cursor: "auto", cursor: "none"