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.
它不起作用
$("#sortable").mouseover(function(){ $(this).css("cursor","default"); }); $("#sortable").sortable({ cursor: "move" });
我需要将鼠标悬停在光标上:默认但在可排序光标中:移动
你不需要 JavaScript。您可以使用 CSS:
#sortable li { cursor:move; }
这sortable是您制作的可排序元素,并且li是可排序的项目。
sortable
li
演示在这里。
根据文档,这是官方支持的方式:
$("#sortable").sortable({ cursor: "move" });