jQueryUI 드래그 가능한 방법


  번역 결과:

dragged

English [d'ræɡd] US [d'ræɡd]

adj. 과거분사) (마우스 사용) 드래그

jQueryUI 드래그 가능한 방법통사론

기능: 마우스를 클릭하고 뷰포트에서 드래그하여 드래그 가능한 개체를 이동합니다.

지침: 모든 DOM 요소에서 드래그 가능한 기능을 활성화합니다.

jQueryUI 드래그 가능한 방법예

<!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>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요

인기 추천

비디오

Q&A