jQueryUI 놓기 가능한 메소드
번역 결과:
droppable
English ['drɒpəbl] US ['drɒpəbl]
adj 드롭 가능, 드롭 가능, 일회용
jQueryUI 놓기 가능한 메소드통사론
기능: 모든 DOM 요소에서 놓기 가능한 기능을 활성화하고 끌기 가능한 위젯에 대한 대상을 만듭니다.
jQueryUI 놓기 가능한 메소드예
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI 放置(Droppable) - 默认功能</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: 100px; height: 100px; padding: 0.5em; float: left; margin: 10px 10px 10px 0; } #droppable { width: 150px; height: 150px; padding: 0.5em; float: left; margin: 10px; } </style> <script> $(function() { $( "#draggable" ).draggable(); $( "#droppable" ).droppable({ drop: function( event, ui ) { $( this ) .addClass( "ui-state-highlight" ) .find( "p" ) .html( "Dropped!" ); } }); }); </script> </head> <body> <div id="draggable" class="ui-widget-content"> <p>请把我拖拽到目标处!</p> </div> <div id="droppable" class="ui-widget-header"> <p>请放置在这里!</p> </div> </body> </html>
인스턴스 실행 »
온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요