您還可以通過(guò)禁用傳播到父節(jié)點(diǎn)來(lái)停止傳播。參數(shù)bubbles = false將阻止瀏覽器傳播事件。它確保按鈕鏈接不被點(diǎn)擊。
{{#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文件。
更多建議: