当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


jQuery UI Droppable create用法及代码示例


jQuery UI 是一种基于 Web 的技术,由各种 GUI 小部件、视觉效果和主题组成。这些函数可以使用 jQuery JavaScript 库来实现。 jQuery UI 是构建网页 UI 接口的最佳工具。它还可用于构建高度交互的 Web 应用程序,或者可用于轻松添加小部件。

在本文中,我们将使用 jQuery UI Droppable create 事件在创建 droppable 时触发。

用法:

我们需要使用创建回调函数来初始化可放置的小部件

$( ".selector" ).droppable({

create : function( event, ui ) {}

});

将事件侦听器绑定到 drop create 事件:

$( ".selector" ).on( "dropcreate ", function( event, ui ) {} );

Parameters: 以下是可接受的参数。

  • event: 当排序创建项目时会触发此事件。
  • ui: 该参数是对象类型。 ui 对象是空的,但包含在内是为了与其他事件保持一致。

CDN 链接:以下是您的项目所需的一些 jQuery Mobile 脚本,因此请将它们添加到您的项目中。

<link rel=”stylesheet” href=”https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css”>
<script src= “https://code.jquery.com/jquery-1.12.4.js”></script>
<script src= “https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>

例子:这个例子说明了使用jQuery UI Droppable 创建事件.

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="utf-8"> 
    <link href= 
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
          rel="stylesheet"> 
    <script src= 
 "https://code.jquery.com/jquery-1.10.2.js"> 
    </script> 
    <script src= 
 "https://code.jquery.com/ui/1.10.4/jquery-ui.js"> 
    </script> 
  
    <style> 
        .dragg { 
            width: 90px; 
            height: 50px; 
            border: 1px solid black; 
            background-color: blue; 
        } 
  
        .dropp2 { 
            width: 200px; 
            height: 50px; 
            border: 1px solid black; 
            float: center; 
            background-color: green; 
        } 
    </style> 
  
    <script> 
        $(function () { 
            $(".dragg").draggable(); 
            $(".dropp2").droppable({ 
                create: function (event, ui) { 
                    $(".res").html($(".res").html() 
                        + "<b>Droppable Widget has been created.</b><br>"); 
                } 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;">GeeksforGeeks</h1> 
  
        <h3>jQuery UI Droppable create Event</h3> 
  
        <div class="dragg"> 
            <p>Drag</p> 
  
        </div> 
        <br> 
        <div class="dropp2"> 
            <p>Drop here</p> 
  
        </div> 
        <br> 
        <div class="res"></div> 
    </center> 
</body> 
  
</html>

输出:

jQuery UI Droppable create Event

jQuery UI Droppable 创建事件

参考: https://api.jqueryui.com/droppable/#event-create



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 jQuery UI Droppable create Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。