jQueryUI Draggable方法
翻译结果:
dragged
英 [d'ræɡd] 美 [d'ræɡd]
adj.牵引的
v.拖;(使…)在地上拖拉,慢吞吞地走,磨蹭( drag的过去式和过去分词 );打捞;(用鼠标)拖动
jQueryUI Draggable方法语法
作用:通过鼠标点击并在视区中拖动来移动 draggable 对象。
说明:在任意的 DOM 元素上启用 draggable 功能。
jQueryUI Draggable方法示例
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI 拖动(Draggable) - 默认功能</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.9.1.js"></script> <script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script> <link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css"> <style> #draggable { width: 150px; height: 150px; padding: 0.5em; } </style> <script> $(function() { $( "#draggable" ).draggable(); }); </script> </head> <body> <div id="draggable" class="ui-widget-content"> <p>请拖动我!</p> </div> </body> </html>
运行实例 »
点击 "运行实例" 按钮查看在线实例