我的指令在 chrome 中完美运行,但在 IE8 中却不行:
app.directive('barMax', function ($compile) {
return {
restrict: 'E',
scope: {
current: '=',
max: '='
},
link: function postLink(scope, element, attrs) {
scope.$watch('max', function (newValue) {
var newContent = '';
newContent += '<div class="bottom" style="width:{{max*2}}px;"> </div><div class="mid" ng-class="{greater: current >= max, less: current < max}" style="width:{{current*2}}px;"> </div><div class="top" style="height:17px;"><div style="width:41%;float:left;margin-top:2px;margin-left:2px;"></div><div style="float:left;width:50%;margin-top:2px;"></div></div>';
element.append($compile(newContent)(scope));
});
}
};
});
在 IE 中发生的情况是......示例可能之前的 max:100 和 current:100 然后灰色条的宽度为 100px,彩色条的宽度为 100px。彩色条的颜色将为绿色,因为 current 等于 max... 然后我将 scope.changeability 更新为 max: 130 和 current:90 所以我应该期望灰色条的宽度为 130px 并且彩色条的宽度应为 90 像素,但宽度不会更新。颜色是正确的。问题是宽度,因为它没有更新。
我还添加了 polyfill
<!--[if lte IE 8]>
<script>
document.createElement('bar-max');
</script>
<![endif]-->