Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在键盘事件中,我想动态更改ng-include指令的src值。
ng-include
src
这是一个可以帮助您的代码示例:
<div class="example-animate-container" ng-include="{{template.url}}">
然后在指令或控制器中
$(document).on("keydown", function () { template.url = "put the value here"; $scope.$apply(); });