angularJS插入html及更换iframe的src

寻技术 Html/CSS / JS脚本 2023年07月11日 59

html:

ng-bind-html


<div class="tabs_content" ng-bind-html="specialHtml"></div>

ng-src

<iframe ></iframe>

加载模块:

ng-bind-html


angular.module('DLPortalApp', []).controller("MyCtrl", function ($scope, $http, $sce) { //重点列表项目 $scope.specialHtml = $sce.trustAsHtml('<iframe ></iframe>'); });

/*重点:
$sce这个参数,它相当于一把钥匙
*/

ng-src

angular.module('DLPortalApp', []).controller("MyCtrl", function ($scope, $http, $sce) {
    
    //重点列表项目
    $scope.trustSrc = $sce.trustAs($sce.RESOURCE_URL,"你的地址");
//$scope.trustSrc = $sce.trustAsResourceUrl("你的地址");//等同于这个方法 });

 

关闭

用微信“扫一扫”