我试图通过以下方式将角度应用程序包含在html页面中:
<html>
<script src="../../../common/lib/jquery/jquery.js"></script>
<script>
$(document).ready( function() {
$("#content").load("angular/index.html");
});
</script>
<div id ="content">
</div>
</html>
当我尝试打开页面时,我可以看到角度应用程序,但它不起作用,因为我有关于ng-app的错误(jquery.js:8152未捕获的ReferenceError:angularApp(应用程序的根元素)没有定义。)
有人可以帮助我吗?