Framework7-modal-alert

提供:Dev Guides
移動先:案内検索

Framework7-アラートモーダル

説明

次の方法を使用して、アラートモーダルを表示できます-

myApp.alert(text, [title, callbackOk])

Or

myApp.alert(text, [callbackOk])

上記のメソッドは、以下にリストされているパラメータを受け入れます-

  • text -テキストとともにアラートを表示します。
  • title -これは、タイトル付きのアラートを表示するオプションの方法です。
  • callbackOk -これは、アラートモーダルでユーザーが[OK]ボタンをクリックしたときに実行されるコールバック機能を提供するオプションのメソッドです。

次の例は、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>Alert 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">Alert 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 = "alert-text">Displays Alert Modal with Text</a></p>

                        <p><a href = "#" class = "alert-text-title">Displays Alert Modal With Text and Title</a></p>

                        <p><a href = "#" class = "alert-text-title-callback">Displays Alert Modal With Text and Title and Callback</a></p>

                        <p><a href = "#" class = "alert-text-callback">Displays Alert Modal With Text and Callback</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
         });

         $$('.alert-text').on('click', function () {
            myApp.alert('This is alert text!!!');
         });

         $$('.alert-text-title').on('click', function () {
            myApp.alert('This is alert text!!!', 'My Title!');
         });

         $$('.alert-text-title-callback').on('click', function () {
            myApp.alert('This is alert text!!!', 'My Title!', function () {
               myApp.alert('You have clicked the button!!!')
            });
         });

         $$('.alert-text-callback').on('click', function () {
            myApp.alert('This is alert text!!!', function () {
               myApp.alert('You have clicked the button!!!')
            });
         });
      </script>
   </body>

</html>

出力

上記のコードがどのように機能するかを確認するために次の手順を実行してみましょう-

  • 上記のHTMLコードを modal_alertl ファイルとしてサーバーのルートフォルダーに保存します。
  • このHTMLファイルをhttp://localhost/modal_alertlとして開くと、出力は以下のように表示されます。
  • ユーザーが最初のオプションをクリックすると、アラートモーダルとテキストが表示されます。
  • ユーザーが2番目のオプションをクリックすると、テキストとタイトルとともに警告モーダルが表示されます。
  • ユーザーが3番目のオプションをクリックすると、テキストとタイトルを含む警告モーダルが表示され、[OK]をクリックすると、コールバック関数が実行されます。
  • ユーザーが最後のオプションをクリックすると、テキスト付きのアラートモーダルが表示され、[OK]をクリックすると、コールバック関数が実行されます。