droppable
UK ['dr?p?bl] US ['dr?p?bl]
adj. ドロップ可能、ドロップに適した、使い捨て
jQueryUI Droppable メソッド 構(gòu)文
関數(shù):任意の DOM 要素でドロップ可能な関數(shù)を有効にし、ドラッグ可能なウィジェットのターゲットを作成します。
jQueryUI Droppable メソッド 例
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI 放置(Droppable) - 默認(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: 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>請把我拖拽到目標(biāo)處!</p> </div> <div id="droppable" class="ui-widget-header"> <p>請放置在這里!</p> </div> </body> </html>
インスタンスの実行 ?
[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します