Can't change CSS style in AngularJS

后端 未结 3 1012
臣服心动
臣服心动 2020-12-08 10:28

For some reasons, I can\'t change the style of an element using the following :

angular.element(\"#element\").style.height = 100px;

I\'m su

3条回答
  •  春和景丽
    2020-12-08 10:59

    If you are running Angular without jQuery, this works:

    angular.element(document.querySelector("#element"))[0].style.height = "100px";
    

    I have tested this in an ionic application.

提交回复
热议问题