1

我需要在 AngularJS 中动态地 iframe 各种 html 页面,然后更改它们的部分 html 内容。我创建了一个指令,它的 iframe 很好,但我的问题是我无法像在 jQuery 中那样访问 iframed 页面的内容!我也不能使用 jqLit​​e 这样做!任何人都可以帮忙吗?

这是指令的样子

myApp.directive('pageiframe', ['$scope','$location', function($scope,$location) {
    var src=  some URL // I get this somehow
    return {
        restrict: 'C',
        replace: true,
        template: "<iframe src="+src+" height='2000px' width='100%' frameborder='0'></iframe>",
        link: function(scope, elem, attrs) {
        var targetIframe=elem[0] // here we get the iframe but then i can't change its html content 
        elem.contents().find('#element').html('change') // this doesn't work!
        }
      }
    }])

ps 我已经将 jQuery 链接放在主页顶部,其他地方我可以使用它就好了!

4

1 回答 1

2

与使用类似,document.ready否则window.onload在加载之前您无法访问 iframe 文档的内容。

link: function(scope, elem, attrs) {
    elem.on('load', function(){
       elem.contents().find('#element').html('change') ;
    }
}
于 2015-10-26T10:48:20.577 回答