它創(chuàng)建一個(gè)視圖,在視圖上實(shí)現(xiàn)可點(diǎn)擊的方法。
{{#view "MethodName"}} text for clickable event {{/view}} Ember.View.extend({ click: function(event){ //do the logic } });
在上面的代碼中,我們使用視圖定義一個(gè)方法名,當(dāng)它被點(diǎn)擊時(shí),它顯示信息,它應(yīng)該在視圖類中調(diào)用。
<!DOCTYPE html> <html> <head> <title>Emberjs Handling Events</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"> <!-- defining a clickable view --> {{#view "clickable"}} <button> Click to display Event </buttonv {{/view}} </script> <script type="text/javascript"> App = Ember.Application.create(); App.ClickableView = Ember.View.extend({ //click evetn fuction which used to display message click: function(evt) { document.write("<h1>"+"Welcome to Tutorialspoint"); } }); </script> </body> </html>
讓我們執(zhí)行以下步驟,看看上面的代碼如何工作:
將上面的代碼保存在handling_events.html文件中
在瀏覽器中打開(kāi)此HTML文件。
下表顯示視圖中的事件發(fā)送:
序號(hào) | 事件及描述 |
---|---|
1 | 發(fā)送事件 將事件發(fā)送到視圖控制器。 |
更多建議: