HTML:
<polymer-element name="sp-button" attributes="active">
<template>
<link rel="stylesheet" href="sp-button.css">
<button type="button"><content></content></button>
</template>
<script src="sp-button.js"></script>
</polymer-element>
JS:
Polymer('sp-button', {
active: false,
activeChanged: function() {
console.log('active ' + this.active);
}
});
我不知道如何允許聚合物元件的用戶收聽點擊事件或懸停事件。此外,在兩個按鈕被包裹在該聚合物元件中的情況下。你的元素的
你能舉一個例子來說明怎麼做?一個代碼示例有助於做出很好的答案。 :) –
'button.addEventListener('receive',function(e){e.stopPagagation(); // ...});' –
或'onSendClick:function(e){e.stopPropagation(); this.fire( '發送'); }' –