EmberJS 模板停止事件傳播

2018-01-03 18:58 更新

描述

您還可以通過(guò)禁用傳播到父節(jié)點(diǎn)來(lái)停止傳播。參數(shù)bubbles = false將阻止瀏覽器傳播事件。它確保按鈕鏈接不被點(diǎn)擊。

語(yǔ)句

{{#link-to 'link text'}}
   <button {{action 'actionName' bubbles=false}}>ButtonName</button>
{{/link-to}}

例子

<!DOCTYPE html>
<html>
   <head>
      <title>Emberjs Stopping Event Propagation</title>
      <!-- CDN's -->
      <script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.1/handlebars.min.js"></script>
      <script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
      <script src="https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.10.0/ember.min.js"></script>
      <script src="https://builds.emberjs.com/tags/v1.10.0-beta.3/ember-template-compiler.js"></script>
      <script src="https://builds.emberjs.com/release/ember.debug.js"></script>
      <script src="https://builds.emberjs.com/beta/ember-data.js"></script>
   </head>
   <body>
      <script type="text/x-handlebars">
        {{outlet}}
      </script>

      <script type="text/x-handlebars" data-template-name="index">
         <div {{action 'User'}}>
            <h2> Link 1 </h2><br/>
            <!-- disabling the multiple calls for link 1 by making bubble=false -->
            <span {{action 'User1' bubbles=false}}>
               <h2> Link 2 </h2>
            </span>
         </div>
      </script>

      <script type="text/javascript">
         App = Ember.Application.create();
         App.IndexRoute = Ember.Route.extend({
            actions: {
               //creating an action event
               User: function () {
                  document.write('Welcome to Tutorialspoint');
               },
               //creating an action event
              User1: function () {
                 document.write('Hello');
              }
            }
         });
      </script>
   </body>
</html>

輸出

讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:

  • 將上面的代碼保存在temp_act_event_prop.html文件中

  • 在瀏覽器中打開(kāi)此HTML文件。

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)