Prompt

优质
小牛编辑
126浏览
2023-12-01

描述 (Description)

提示模式允许用户对显示的内容采取某些操作。 它使用以下方法 -

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

OR

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

以上方法接受下面列出的参数 -

  • text - 显示带文本的提示模式。

  • title - 这是一个可选方法,显示带标题的提示模式。

  • callbackOk - 这是一个可选方法,它提供了当用户在提示模式下单击“确定”按钮时执行的回调函数。

  • callbackCancel - 这是一个可选方法,它提供了当用户在提示模式下单击“取消”按钮时执行的回调函数。

例子 (Example)

以下示例演示了在Framework7中使用prompt模式,当您单击链接以执行某些操作时,它会显示提示框 -

<!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>

输出 (Output)

让我们执行以下步骤,看看上面给出的代码是如何工作的 -

  • 将上面给出的HTML代码保存为服务器根文件夹中的modal_prompt.html文件。

  • 以http://localhost/modal_prompt.html打开此HTML文件,输出显示如下。

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

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

  • 当用户单击第三个选项时,它会链接到包含文本和标题的弹出窗口。 当用户在框中输入文本时,它会在单击“确定”时执行回调函数。

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