當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。