在我的应用程序中,我使用类似的东西加载html部分:
$document.ready(function(){
$('#parentElement').load('/partials/temp1');
});
正在加载的模板类似于:
<p style="background-color:black; color:white; margin:20px; padding:20px;">A simple 1 temp child - {{items[0]}}</p>
<div style="background-color:gray; color:white;">Html contents also works ok!!!</div>
<div>The quick brown fox jumps over the lazy dog</div>
<p>
Make the fox
<button type="button" onclick="alert('Jump!!');">jump</button>
</p>
BTW "#parentElement"
包含在ng-app
和ng-controller
指令div
中
模板加载正常,但Angular.js没有呈现{{items[0]}}
$scope
对象我在这里做错了吗?
请指导