我有一个绑定,用聚合物绑定改变我的div的颜色。除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];
}
});