iframe在页面中显示时,document.getElementById无效

时间:2016-12-02 06:31:44

标签: javascript jquery html iframe

HTML:

$scope.refreshSection = function ($event) {
            ajaxService.getData("/home/index", "")
                .then(function (data) {
                    $scope.section= data;
                });
        }

我有iframe将项目添加到列表中。添加项后,我需要从脚本动态刷新此部分。

SCRIPT:

function refresh(){
    //other stuffs 
    var sectionScope = angular.element(document.getElementById("items")).scope();
        sectionScope.refreshSection();
}

执行此行时,我将sectionScope定义为未定义,因为document.getElementById("items")为空。

为什么我没有得到这个价值?

0 个答案:

没有答案