1

它不起作用

$("#sortable").mouseover(function(){ 
    $(this).css("cursor","default"); 
});
$("#sortable").sortable({ cursor: "move" });

我需要将鼠标悬停在光标上:默认但在可排序光标中:移动

4

2 回答 2

6

你不需要 JavaScript。您可以使用 CSS:

#sortable li { cursor:move; }

sortable是您制作的可排序元素,并且li是可排序的项目。

演示在这里。

于 2013-03-04T15:17:48.827 回答
0

根据文档,这是官方支持的方式:

$("#sortable").sortable({ cursor: "move" });

于 2015-08-31T09:47:04.167 回答