How to get the css attribute in the class in the custom tag in angularjs
人生最曼妙的风景,竟是内心的淡定与从容!
Two choices, one is
document.getElementsBy
Id("your_id"); Then peel the garlic, of course getElementsByClassName belongs to the same solution as this.
The second one, if it is in the directive, it is also possible
angular.element(this)
Then peel the garlic...
This is not possible. I found a way. You can have a scope in the custom tag. Use $rootScope to get the attributes and then share them, so that they can be used outside the custom tag.
Two choices, one is
Id("your_id");
Then peel the garlic, of course getElementsByClassName belongs to the same solution as this.
The second one, if it is in the directive, it is also possible
Then peel the garlic...
This is not possible. I found a way. You can have a scope in the custom tag. Use $rootScope to get the attributes and then share them, so that they can be used outside the custom tag.