Jquey拖拽控制項Draggable使用方法(asp.net環境)

來源:互聯網
上載者:User

本例主要目的是使用Jquey的Draggable控制項。

  使用時首先依次引用Jquery,Jquery-Ui ,Draggable三個Js。然後在js中編寫相應的代碼,相關代碼說明請看程式中的注釋。

  關於 Draggable的說明請參考:http://docs.jquery.com/UI/API/1.8/Draggable

源碼: 複製代碼 代碼如下:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="JqueryDrag._Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.custom.min.js"></script>
<script type="text/javascript" src="js/Draggable.js"></script>
<script type="text/javascript">
$(document).ready(function() {
//拖拽方法
$("#imgDrag").draggable({
//拖拽範圍
containment: "#DragArea",
//開始事件
start: function(event, ui) {
StartDrag(event, ui);
},
//結束事件
stop: function(event, ui) {
EndDrag(event, ui);
}
})
});
//開始事件方法
function StartDrag(event, ui) {
$("#StartDragInfo").html("開始: 左:" + ui.offset.left + "上:" + ui.offset.top);
}
//結束事件方法
function EndDrag(event, ui) {
$("#EndDragInfo").html("結束: 左:" + ui.offset.left + "上:" + ui.offset.top);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<%--Draggable參考手冊http://docs.jquery.com/UI/API/1.8/Draggable--%>
<%--拖動的範圍--%>
<div id="DragArea" style="width: 500px; height: 500px; border: 1px solid blue">
<%--記錄拖動開始時的資訊--%>
<div id="StartDragInfo">
</div>
<%--記錄拖動結束時的資訊--%>
<div id="EndDragInfo">
</div>
<br />
<br />
<%--被拖動的物體--%>
<img id="imgDrag" src="img/imgGreen.gif" />
</div>
</form>
</body>
</html>

檔案打包下載

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.