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


jQuery Mobile Dialog create用法及代码示例


jQuery Mobile 是一种基于 Web 的技术,旨在制作可在所有智能手机、平板电脑和桌面设备上访问的响应式网站和应用程序。 DialogWidget 用作弹出窗口,可在任何页面上使用以将其转换为模式对话框。

在这篇文章中,我们将学习 jQuery 移动对话框创造事件。创建对话框小部件时会触发 create 事件。这打返回函数 创建对话框时会调用对话框的 .

用法:

创建事件的回调函数如下:

$("Selector").dialog({
    create: function( event, ui ) {}
});

参数值:

  • event:创建对话框时会触发该事件。
  • ui:它指定空对象,但包含它是为了与其他小部件保持一致。

用于将事件监听器绑定到对话创建事件:

$("Selector").on("dialogcreate", function(event, ui ) {});

CDN 链接:以下是 jQuery Mobile 项目的 CDN 链接。

<link rel=”stylesheet” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code.jquery.com/jquery-1.11.1.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

示例:在以下示例中,每当加载页面时,都会创建对话框并显示警报消息。

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <meta charset="UTF-8" /> 
    <meta http-equiv="X-UA-Compatible" 
          content="IE=edge" /> 
    <meta name="viewport" 
          content="width=device-width,  
                   initial-scale=1.0" /> 
    <link rel="stylesheet" 
          href= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> 
    <script src= 
"https://code.jquery.com/jquery-1.11.1.min.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
</head> 
  
<body> 
    <div data-role="page" id="gfgpage"> 
        <div data-role="header"> 
            <h1 style="color: green;"> 
                GeeksforGeeks 
            </h1>  
        </div> 
        <div data-role="main" class="ui-content"> 
            <h3>jQuery Mobile Dialog create Event</h3> 
            <center>  
                <a href="#gfgDialog" data-rel="dialog"> 
                    GeeksforGeeks dialog 
                </a>  
            </center> 
        </div> 
    </div> 
    <div data-role="page" id="gfgDialog"> 
        <div data-role="header"> 
            <h2>GeeksforGeeks</h2> 
        </div> 
        <div role="main" class="ui-content"> 
              
<p>Programming Tutorials Website</p> 
  
            <ul> 
                <li>Data Structures</li> 
                <li>Algorithms</li> 
                <li>Web Development</li> 
            </ul> 
        </div> 
    </div> 
    <script> 
        $("#gfgDialog").dialog({ 
            create: function(event, ui) { 
                alert("Welcome to GeeksforGeeks") 
            } 
        }); 
    </script> 
</body> 
  
</html>

输出:

参考: https://api.jquerymobile.com/dialog/#event-create



相关用法


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