我正在使用Scriptaculous使元素(id =“ moveable1”)可拖动/移动:

<script>new Draggable('moveable1');</script>


使用javascript-如何最好/最轻松地将光标样式更改为“移动”(而不是使用CSS,即,如果他们没有javascript,则不表示可移动)。

我希望将其作为脚本选项,但还没有;(

最佳答案

谢谢你俩。

目前,我已经处理了:

<script>
new Draggable('moveable1');
document.getElementById("moveable1").style.cursor = "move";
// ... repeat for other moveable objects
</script>


因为这似乎很容易阅读和理解。

07-28 08:11