jquery操作の多機能フォーム

php中世界最好的语言
リリース: 2018-04-26 15:52:36
オリジナル
1556 人が閲覧しました

この記事では、jQueryのドラッグアンドドロップソートの簡単な実装方法を主に紹介し、マウスイベントに応答してページ要素を動的に操作するjQueryの関連スキルを含みます。必要な友達はそれを参照してください

この記事では、jqueryドラッグの簡単な実装方法を説明します。そしてドロップソート。参考のために皆さんと共有してください。詳細は次のとおりです。

実行中のエフェクトのスクリーンショットは次のとおりです。

コードを分析した結果、新しいアクションは簡単であることがわかりました。強化~~

コードは次のとおりです:

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>测试的拖拽功能</title>
<style type="text/css">
body, p { margin: 0; paading: 0; font-size: 12px; }
body { width:100%; margin: 0 auto; }
ul, li { margin: 0; padding: 0; list-style: none; }
.clear { clear: both; width: 1px; height: 0px; line-height: 0px; font-size: 1px; }
.drag_module_box { width: 600px; height: auto; margin: 25px 0 0 0; padding: 5px; border: 1px solid #f00; }
.drag_module_box1 { width: 600px; height: auto; margin: 25px 0 0 0; padding: 5px; border: 1px solid #f00; }
.drag_module_main { position: static; width: 600px; height: 80px; margin-bottom: 5px; border: 1px solid blue; background: #ccc; }
.drag_module_maindash { position: absolute; width: 600px; height: 80px; margin-bottom: 5px; border: 1px dashed blue; background: #ececec; opacity: 0.7; }
.drag_module_hide { width: 600px; height: 80px; margin-bottom: 5px; }
.drag_module_dash { position: sta;tic; width: 600px; height: 80px; margin-bottom: 5px; border: 1px dashed #f00; };
</style>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript">
$(document).ready( function () {
   var range = { x: 0, y: 0 };//鼠标元素偏移量
   var lastPos = { x: 0, y: 0, x1: 0, y1: 0 }; //拖拽对象的四个坐标
   var tarPos = { x: 0, y: 0, x1: 0, y1: 0 }; //目标元素对象的坐标初始化
   var thep = null, move = false;//拖拽对象 拖拽状态
   var thepId =0, thepHeight = 0, thepHalf = 0; tarFirstY = 0; //拖拽对象的索引、高度、的初始化。
   var tarp = null, tarFirst, tempp; //要插入的目标元素的对象, 临时的虚线对象
  function loopbox(){ //循环初始化
     $(".drag_module_box").find(".drag_module_main").each(function(){
      console.log( 'find' );
       $(this).mousedown(function (event){
         //拖拽对象
         thep = $(this);
         //鼠标元素相对偏移量
         range.x = event.pageX - thep.offset().left;
         range.y = event.pageY - thep.offset().top;
         thepId = thep.index();
         thepHeight = thep.height();
         thepHalf = thepHeight/2;
         move = true;
         thep.attr("class","drag_module_maindash");
         // 创建新元素 插入拖拽元素之前的位置(虚线框)
         $("<p class=&#39;drag_module_dash&#39;></p>").insertBefore(thep);
       });
     });
  }
  loopbox();
   $(".drag_module_box").mousemove(function(event) {
    console.log( 'mousemove' );
     if (!move) return false;
     lastPos.x = event.pageX - range.x;
     lastPos.y = event.pageY - range.y;
     lastPos.y1 = lastPos.y + thepHeight;
     // 拖拽元素随鼠标移动
     thep.css({left: lastPos.x + 'px',top: lastPos.y + 'px'});
     // 拖拽元素随鼠标移动 查找插入目标元素
     var $main = $('.drag_module_main'); // 局部变量:按照重新排列过的顺序 再次获取 各个元素的坐标,
     tempp = $(".drag_module_dash"); //获得临时 虚线框的对象
     $main.each(function () {
       tarp = $(this);
       tarPos.x = tarp.offset().left;
       tarPos.y = tarp.offset().top;
       tarPos.y1 = tarPos.y + tarp.height()/2;
       tarFirst = $main.eq(0); // 获得第一个元素
       tarFirstY = tarFirst.offset().top + thepHalf ; // 第一个元素对象的中心纵坐标
       //拖拽对象 移动到第一个位置
       if (lastPos.y <= tarFirstY) {
           tempp.insertBefore(tarFirst);
       }
       //判断要插入目标元素的 坐标后, 直接插入
       if (lastPos.y >= tarPos.y - thepHalf && lastPos.y1 >= tarPos.y1 ) {
         tempp.insertAfter(tarp);
       }
     });
   }).mouseup(function(event) {
    console.log( 'mouseup' );
    if(thep==null) return false;
     thep.insertBefore(tempp); // 拖拽元素插入到 虚线p的位置上
     thep.attr("class", "drag_module_main"); //恢复对象的初始样式
     $('.drag_module_dash').remove(); // 删除新建的虚线p
     move=false;
   });
   $("#drag_module_insert").click(function(){
    $("#drag_module_box1").html($("#drag_module_box1").html()+$("#drag_module_box2").html());
    loopbox();
   });
   $("#drag_module_seque").click(function(){
    $(".drag_module_box").find(".drag_module_main").each(function(){
      console.log($(this).attr('id'));
    });
   });
});
</script>
</head>
<body>
<p class="drag_module_box" id="drag_module_box1">
   <p class="drag_module_main" id="main1">p1</p>
   <p class="drag_module_main" id="main2">p2</p>
   <p class="drag_module_main" id="main3">p3</p>
   <p class="drag_module_main" id="main4">p4</p>
   <p class="drag_module_main" id="main5">p5</p>
   <p class="drag_module_main" id="main6">p6</p>
</p>
<p class="drag_module_box1" id="drag_module_box2">
  <p class="drag_module_main" id="main_first">p7</p>
</p>
<input type="button" value="新建" id="drag_module_insert"/>
<input type="button" value="确定" id="drag_module_seque"/>
</body>
</html>
ログイン後にコピー

この記事のケースを読んでいただけると思います。この方法はすでにマスターされています。さらに興味深い情報については、php 中国語 Web サイトの他の関連記事に注目してください。

推奨読書:

JS 親ウィンドウと子ウィンドウを取得する iframe の場合の詳細な説明

jQuery 親ウィンドウと子ウィンドウを取得する iframe の場合の詳細な説明

やり方jQuery は iframe ウィンドウの幅と高さを計算します

以上がjquery操作の多機能フォームの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!