角度函数在ie9

时间:2016-04-01 05:49:26

标签: angularjs

我的代码是

function complileTemplate(dataum)
{
    angular.element(document).injector().invoke(function($compile){
        var obj = $('#connectingFlights'); // get wrapper
        var scope = angular.element($("#top")).scope(); // get scope
        obj.html($(dataum));
        // compile!!!
        $compile(obj)(scope);
        scope.$digest();
    });
}

My error is

从最高ID获取范围值时,它会抛出未定义 ..

谢谢

0 个答案:

没有答案