溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jQuery UI 拖動(Draggable) - 事件

發(fā)布時間:2020-08-05 22:58:29 來源:網(wǎng)絡(luò) 閱讀:926 作者:素顏豬 欄目:web開發(fā)

定義和用法

draggable 上的 start、drag 和 stop 事件。拖拽開始時觸發(fā) start 事件,拖拽期間觸發(fā) drag 事件,拖拽停止時觸發(fā) 
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>請拖拽我,觸發(fā)一連串的事件。</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" 被調(diào)用</span>
				<span class="count">0</span>x "start" 被調(diào)用
			</li>
			<li id="event-drag" class="ui-state-default ui-corner-all">
				<span class="ui-icon ui-icon-arrow-4">"drag" 被調(diào)用</span>
				<span class="count">0</span>x "drag" 被調(diào)用
			</li>
			<li id="event-stop" class="ui-state-default ui-corner-all">
				<span class="ui-icon ui-icon-stop">"stop" 被調(diào)用</span>
				<span class="count">0</span>x "stop" 被調(diào)用
			</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]);
			}
		});


		/**
		 * 更新數(shù)值
		 * @param  {[object]} $event_counter [li對象]
		 * @param  {[int]} new_count      [次數(shù)]
		 */
		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>


輸出

jQuery UI 拖動(Draggable) - 事件

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI