dragged

英 [d'r?ɡd]? ?美 [d'r?ɡd]??

adj.牽引的

v.拖;(使…)在地上拖拉,慢吞吞地走,磨蹭( drag的過去式和過去分詞 );打撈;(用鼠標(biāo))拖動(dòng)

jQueryUI Draggable方法 語法

作用:通過鼠標(biāo)點(diǎn)擊并在視區(qū)中拖動(dòng)來移動(dòng) draggable 對(duì)象。

說明:在任意的 DOM 元素上啟用 draggable 功能。

jQueryUI Draggable方法 示例

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>jQuery UI 拖動(dòng)(Draggable) - 默認(rèn)功能</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>請(qǐng)拖動(dòng)我!</p>
</div>
 
 
</body>
</html>

運(yùn)行實(shí)例 ?

點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例