jQuery实现div随意拖动的实例代码(通用代码)_jquery
程序员文章站
2022-04-07 21:46:52
...
注意js放的位置,要放的靠近,若被其他覆盖,则无法移动。
比如:
可移动的DIV
引入jquery.js, jquery-ui.js,
一句:
$("#move").draggable();
如希望,点住时鼠标变手形:
$("#move").mousedown(function(){ $(this).css("cursor","pointer"); }).mouseup(function(){ $(this).css("cursor","default"); });
下面给大家分享一段通用代码jquery实现拖动div的通用方法