gpt4 book ai didi

javascript - AngularJS 不会在使用 document.write() 插入的 HTML 中执行

转载 作者:行者123 更新时间:2023-11-29 10:49:09 25 4
gpt4 key购买 nike

我想插入来自 JS 函数的 HTML,该函数在加载正文时执行。最初 body 是空的。

这个 HTML 有 AngularJS 命令,但问题是 AngularJS 不解析 HTML。

<!doctype html>
<html ng-app>
<head>
<script>
function loadHTML(){
html = '<ul ng-controller="phoneCtrl"><li ng-repeat="phone in phones">{{phone.name}}<p>{{phone.snippet}}</p></li></ul><script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script'+'><script src="controllers.js"></script'+'>';
document.write = html;
}
</script>
</head>
<body onload="loadHTML();" ></body>
</html>

controller.js的内容是:

function phoneCtrl($scope) {
$scope.phones = [
{
"name": "Nexus S",
"snippet": "Fast just got faster with Nexus S."
},

{
"name": "Motorola XOOM™ with Wi-Fi",
"snippet": "The Next, Next Generation tablet."
},

{
"name": "MOTOROLA XOOM™",
"snippet": "The Next, Next Generation tablet."
}
];
}

最佳答案

onload代码是在AngularJS真正解析DOM之后执行的。所以要将它们捕获到 Angular 中,你必须使用 $compile。查看有关 $compile 工作原理的文档。

关于javascript - AngularJS 不会在使用 document.write() 插入的 HTML 中执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13656533/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com