在
键盘事件中,我想动态更改ng-include指令的src值.
这是一个可以帮助您的
代码示例:
<div class="example-animate-container" ng-include="{{template.url}}">
然后在指令或控制器
$(document).on("keydown",function () {
template.url = "put the value here";
$scope.$apply();
});
原文链接:https://www.f2er.com/js/153754.html