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


jQuery Mobile Dialog close()用法及代碼示例


jQuery 移動是一種網絡技術,用於製作可在智能手機、平板電腦和桌麵設備上訪問的響應式網站和應用程序。在本文中,我們將使用 jQuery Mobile Dialog Widgetclose()方法關閉打開的對話框。當。。。的時候close()方法在任何對話框小部件上調用,它隻是關閉對話框。該方法不接受任何參數。

用法:

$(".selector").dialog("close");

Parameters: 該方法不接受任何參數。

CDN 鏈接:首先,添加項目所需的 jQuery Mobile 腳本。

<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-2.1.3.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js”></script>

例子:

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>GeeksForGeeks - Dialog Close</title> 
    <meta name="viewport" content= 
        "width=device-width, initial-scale=1" /> 
    <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-2.1.3.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"> 
    </script> 
  
    <script> 
  
        // This method will be called when the  
        // button inside the dialog will be clicked. 
        function closeDialog() { 
  
            // Invokes close() method on #div2's dialog 
            $("#div2").dialog("close"); 
  
        } 
    </script> 
</head> 
  
<body> 
    <div id="div1" data-role="page"> 
        <div data-role="header"> 
            <h1>GeeksForGeeks</h1> 
            <h4>jQuery Mobile Dialog close() Method</h4> 
        </div> 
        <div data-role="content"> 
            <button> 
                <a href="#div2"> 
                    Click to Show the Dialog Box 
                </a> 
            </button> 
        </div> 
    </div> 
  
    <!-- id ="div2"-->
    <div id="div2" data-role="dialog"> 
        <div data-role="header"> 
            <h1>jQuery Mobile - GFG</h1> 
        </div> 
        <div data-role="content"> 
            jQuery Mobile - Dialog close() method example. 
            <button onclick="closeDialog();"> 
                This Button Closes the Dialog 
            </button> 
        </div> 
    </div> 
</body> 
  
</html> 

輸出:

Dialog Close() Method

參考: https://api.jquerymobile.com/dialog/#method-close



相關用法


注:本文由純淨天空篩選整理自vpsop大神的英文原創作品 jQuery Mobile Dialog close() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。