Polymer Binding不仅适用于IE中的CSS

时间:2015-07-04 04:59:45

标签: html css binding polymer

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

1 个答案:

答案 0 :(得分:0)

那么问题是什么?我花了5秒钟谷歌搜索,并找到了polymer documentation,解释了为什么存在兼容性问题以及该问题的潜在解决方法。 不要偷懒!