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.
考虑这个例子:
<div style="width:200px; height:200px; background-color:red" draggable="true" />
在 IE10 中,当我移动红色框时,它会显示带有一个小圆圈的光标,其中有一条线穿过它:
另一方面,在 IE10 testdrive 的冰箱演示中,当我们拖动磁铁时,它会显示一个带有 + 号的手。
除了设置draggable为 true 之外,还需要什么才能使光标显示正确的形状?
draggable
您需要通过取消拖动事件来表明您接受放置。因此,对于您可以拖放到的元素,请侦听 ondragover 事件并取消它。
这个答案有点晚了,但希望这就是你所需要的。