jQueryUI Draggable methods
Translation results:
dragged
英[d'ræɡd] US[d'ræɡd]
adj. traction
v. drag; (to make ...) drag on the ground, walk slowly, dawdle (past tense and past participle of drag); salvage; (use the mouse) drag
jQueryUI Draggable methodssyntax
Function:Move the draggable object by clicking the mouse and dragging it in the viewport.
Description: Enable draggable function on any DOM element.
jQueryUI Draggable methodsexample
<!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>
Run instance »
Click the "Run instance" button to view the online instance