最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識百科 - 正文

jQuery UI Draggable + Sortable 結(jié)合使用(實例講解)

來源:懂視網(wǎng) 責(zé)編:小采 時間:2020-11-27 22:30:54
文檔

jQuery UI Draggable + Sortable 結(jié)合使用(實例講解)

jQuery UI Draggable + Sortable 結(jié)合使用(實例講解):工作中需要將一個左邊的設(shè)計好的控件,拖拽到右邊的面板中,同時保持右邊面板中的控件自由排序,這時候就需要及支持拖拽又支持排序的操作了, Demo截圖:從左邊控件拖到右邊區(qū)域 代碼段: <script type=text/javascript> $(funct
推薦度:
導(dǎo)讀jQuery UI Draggable + Sortable 結(jié)合使用(實例講解):工作中需要將一個左邊的設(shè)計好的控件,拖拽到右邊的面板中,同時保持右邊面板中的控件自由排序,這時候就需要及支持拖拽又支持排序的操作了, Demo截圖:從左邊控件拖到右邊區(qū)域 代碼段: <script type=text/javascript> $(funct

工作中需要將一個左邊的設(shè)計好的控件,拖拽到右邊的面板中,同時保持右邊面板中的控件自由排序,這時候就需要及支持拖拽又支持排序的操作了,

Demo截圖:從左邊控件拖到右邊區(qū)域

代碼段:

<script type="text/javascript">
 $(function () {
 $("#box_wrap1,#box_wrap2").sortable({
 connectWith: ".box_wrap",
 helper: "clone",
 cursor: "move",//移動時候鼠標(biāo)樣式
 opacity: 0.5, //拖拽過程中透明度
 placeholder: "box-holdplace",//占位符className,設(shè)置一個樣式
 }).disableSelection();
 
 $(".dragable").draggable({
 connectToSortable: ".sortable",
 helper: "clone",
 // revert: "invalid",
 // handle: ".handle"
 });
 });
</script>

Html 代碼:

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8" />
 <title></title>
 <link href="js/bootstrap/css/bootstrap.css" rel="external nofollow" rel="stylesheet" />
 <link href="js/bootstrap/css/bootstrap-theme.min.css" rel="external nofollow" rel="stylesheet" />
 <link href="css/index.css" rel="external nofollow" rel="stylesheet" />
 
 <script src="js/jquery-1.10.2.min.js"></script>
 <script src="js/bootstrap/js/bootstrap.min.js"></script>
 
 <!--Sortable -->
 <script src="https://www.gxlcms.com//apps.bdimg.com/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
 
</head>
<body>
 <div class="container">
 <div class="row">
 <div class="column col-md-6">
 <div class="box_wrap " id="box_wrap1" >
 <div class="box dragable">
 left-test1
 </div>
 <div class="box dragable">
 left-test2
 </div>
 <div class="box dragable">
 left-test3
 </div>
 </div>
 </div>
 <div class="column col-md-6">
 <div class="box_wrap sortable" id="box_wrap2">
 <div class="box">
 test1
 </div>
 <div class="box">
 test2
 </div>
 <div class="box">
 test3
 </div>
 </div>
 </div>
 </div>
 </div>
</body>
</html>

以上這篇jQuery UI Draggable + Sortable 結(jié)合使用(實例講解)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

jQuery UI Draggable + Sortable 結(jié)合使用(實例講解)

jQuery UI Draggable + Sortable 結(jié)合使用(實例講解):工作中需要將一個左邊的設(shè)計好的控件,拖拽到右邊的面板中,同時保持右邊面板中的控件自由排序,這時候就需要及支持拖拽又支持排序的操作了, Demo截圖:從左邊控件拖到右邊區(qū)域 代碼段: <script type=text/javascript> $(funct
推薦度:
標(biāo)簽: 實例 ui jQuery
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top