我正在尝试使用polymer包裹一个按钮。
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);
}
});
我不确定如何允许该聚合物元素的用户收听单击事件或悬停事件。此外,在两个按钮被包裹在该聚合物元件中的情况下。