ie style 不支持 angular expression

为了取整数,用filter写了类似下面的code,但在ie下不起作用:




  • 后来改成了如下,在controller返回,好使了:

  • ng-style="getStyle($index)">


    $scope.getStyle = function(index){
    return {
    position: 'absolute',
    top: (index % 3 * 100) + 'px',
    left: (parseInt(index/3, 10) * 220) + 'px'
    };
    };

  • 你可能感兴趣的:(ie style 不支持 angular expression)