我已經創建了一個呈現html文本並處理點擊事件的組件。來自餘燼組件的冒泡事件
Ember Components不會冒泡事件,但我想讓點擊鏈接到窗口並讓瀏覽器處理它。
代碼告知超過1000個字:-)
HTML
<script type="text/x-handlebars" data-template-name="application">
<h1>Click the link in the following div</h1>
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="index">
{{test-a}}
</script>
<script type="text/x-handlebars" data-template-name="components/test-a">
<div class="index" {{action 'edit' on="click"}}>
<a href="http://www.example.com" target="_blank">Click me</a>
</div>
</script>
咖啡
App = Ember.Application.create({});
App.TestAComponent = Ember.Component.extend
actions:
edit: ->
if event.toElement.nodeName.toUpperCase() == 'A'
return true # should bubble to the window but is a component
# do something for editing here
alert('div clicked')
false
CSS
h1 { font-size: 1.6em; padding-bottom: 10px; }
h2 { font-size: 1.4em; }
ul { padding: 15px; font-size: 1.4em; color: green; }
.index { background-color: #666; padding: 20px; }
小提琴:http://jsfiddle.net/ujrZL/
隨着{{行動}}將無法正常工作。因爲它會執行evt.preventDefault()。你目前的代碼是一個測試,你能分享你的意圖嗎?所以我可以在一些解決方案中思考。謝謝。 –