0
我有綁定來改變我的div與聚合物綁定的顏色。它在IE中除外。聚合物綁定在CSS中只能在IE中工作
<div horizontal layout class="navigation" style="background-color:{{toolbarColor}};">
</div>
<script>
Polymer('mapscontroller-element', {
currentPoint: 0,
toolbarColor: "#0099cc",
...
currentPointChanged: function() {
this.toolbarColor = this.toolbarColorArray[this.currentPoint];
}
});