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(); });