您好,登錄后才能下訂單哦!
draggable 上的 start、drag 和 stop 事件。拖拽開始時觸發 start 事件,拖拽期間觸發 drag 事件,拖拽停止時觸發 stop 事件
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>jQuery UI 拖動(Draggable) - 事件</title> <link rel="stylesheet" href="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/jquery-ui.min.css"> <style> #draggable{ width: 16em; padding: 0 1em; } #draggable ul li{ margin:1em 0; padding:0.5em 0; } #draggable ul li span.ui-icon{ float: left; } #draggable ul li span.count{ font-weight: bold; } </style> </head> <body> <div id="draggable" class="ui-widget ui-widget-content"> <p>請拖拽我,觸發一連串的事件。</p> <ul class="ui-helper-reset"> <li id="event-start" class="ui-state-default ui-corner-all"> <span class="ui-icon ui-icon-play">"start" 被調用</span> <span class="count">0</span>x "start" 被調用 </li> <li id="event-drag" class="ui-state-default ui-corner-all"> <span class="ui-icon ui-icon-arrow-4">"drag" 被調用</span> <span class="count">0</span>x "drag" 被調用 </li> <li id="event-stop" class="ui-state-default ui-corner-all"> <span class="ui-icon ui-icon-stop">"stop" 被調用</span> <span class="count">0</span>x "stop" 被調用 </li> </ul> </div> <script src="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/external/jquery/jquery.js" type="text/javascript" ></script> <script src="js/jquery-ui-1.12.1.custom/jquery-ui-1.12.1.custom/jquery-ui.min.js"></script> <script> //獲取對象 var $start_counter = $("#event-start"), $drag_counter = $("#event-drag"), $stop_counter = $("#event-stop"), counts = [0,0,0]; $("#draggable").draggable({ start:function(){ counts[0]++; updateCounterStatus($start_counter,counts[0]); }, drag:function(){ counts[1]++; updateCounterStatus($drag_counter,counts[1]); }, stop:function(){ counts[2]++; updateCounterStatus($stop_counter,counts[2]); } }); /** * 更新數值 * @param {[object]} $event_counter [li對象] * @param {[int]} new_count [次數] */ function updateCounterStatus($event_counter,new_count){ if (!$event_counter.hasClass('ui-state-hover')) { $event_counter.addClass('"ui-state-hover"') .siblings().removeClass('ui-state-hover'); } $("span.count",$event_counter).text(new_count); } </script> </body> </html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。