Framework7 - 提示模态框



描述

提示模态框允许用户对显示的内容执行某些操作。它使用以下方法:

myApp.prompt(text, [title, callbackOk, callbackCancel])

或者

myApp.prompt(text, [callbackOk, callbackCancel])

上述方法接受以下参数:

  • text - 显示带有文本的提示模态框。

  • title - 可选方法,显示带有标题的提示模态框。

  • callbackOk - 可选方法,提供在用户点击提示模态框上的“确定”按钮时执行的回调函数。

  • callbackCancel - 可选方法,提供在用户点击提示模态框上的“取消”按钮时执行的回调函数。

示例

以下示例演示了在 Framework7 中使用提示模态框的方法,当您点击链接执行某些操作时,将显示提示框:

<!DOCTYPE html>
<html>

   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1, 
         maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui" />
      <meta name = "apple-mobile-web-app-capable" content = "yes" />
      <meta name = "apple-mobile-web-app-status-bar-style" content = "black" />
      <title>Prompt Modal</title>
      <link rel = "stylesheet" 
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css" />
      <link rel = "stylesheet" 
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css" />
   </head>

   <body>
      <div class = "views">
         <div class = "view view-main">
         
            <div class = "navbar">
               <div class = "navbar-inner">
                  <div class = "center sliding">Prompt Modal</div>
               </div>
            </div>
            
            <div class = "pages">
               <div data-page = "index" class = "page navbar-fixed">
               
                  <div class = "page-content">
                     <div class = "content-block">
                        <p><a href = "#" class = "prompt-ok">Displays Prompt Modal with Text and Ok callback</a></p>
                        
                        <p><a href = "#" class = "prompt-ok-cancel">Displays Prompt Modal With Text, Ok and Cancel callbacks</a></p>
                        
                        <p><a href = "#" class = "prompt-title-ok">Displays Prompt Modal With Text, Title and Ok callbacks</a></p>
                        
                        <p><a href = "#" class = "prompt-title-ok-cancel">Displays Prompt Modal With Text, Title, Ok and Cancel callbacks</a></p>
                     </div>
                  </div>
                  
               </div>
            </div>
            
         </div>
      </div>
      
      <script type = "text/javascript" 
         src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>
         
      <script>
         // Here you can initialize the app
         var myApp = new Framework7();

         // If your using custom DOM library, then save it to $$ variable
         var $$ = Dom7;

         // Add the view
         var mainView = myApp.addView('.view-main', {
         
            // enable the dynamic navbar for this view:
            dynamicNavbar: true
         });

         $$('.prompt-ok').on('click', function () {
            myApp.prompt('Enter your name?', function (value) {
               myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
            });
         });

         $$('.prompt-ok-cancel').on('click', function () {
            myApp.prompt('Enter your name?', function (value) {
                myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
            },
            
            function (value) {
               myApp.alert('Name is "' + value + '" and you have clicked cancel button.');
            }
            );
         });
         
         $$('.prompt-title-ok').on('click', function () {
            myApp.prompt('Enter your name?', 'My Title', function (value) {
               myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
            });
         });
         
         $$('.prompt-title-ok-cancel').on('click', function () {
            myApp.prompt('Enter your name?', 'My Title', function (value) {
               myApp.alert('Name is "' + value + '" and you have clicked Ok button.');
            },
            function (value) {
               myApp.alert('Name is "' + value + '" and you have clicked cancel button.');
            }
            );
         });
      </script>
   </body>

</html>

输出

让我们执行以下步骤来查看上述代码是如何工作的:

  • 将上述HTML代码保存为modal_prompt.html文件到您的服务器根目录。

  • 打开此HTML文件,地址为https://127.0.0.1/modal_prompt.html,输出结果如下所示。

  • 当用户点击第一个选项时,它会链接到一个弹出窗口。当用户在框中输入文本后点击“确定”按钮,则会执行回调函数。

  • 当用户点击第二个选项时,它会链接到一个弹出窗口,当用户点击“取消”按钮时,会执行回调函数。当用户在框中输入文本并点击“确定”按钮时,也会执行回调函数。

  • 当用户点击第三个选项时,它会链接到一个带有文本和标题的弹出窗口。当用户在框中输入文本后点击“确定”按钮,则会执行回调函数。

  • 当用户点击最后一个选项时,它会链接到一个带有文本和标题的弹出窗口,当用户点击“取消”按钮时会执行回调函数。当用户输入文本并点击“确定”按钮时,也会执行回调函数。

framework7_overlays.htm
广告