项目需要、在网上查找angularjs支持ie低版本的问题(主要是windows7下只有IE8)整理了一个小demo
主要两点 1、ng-app="myApp" id="test11" 加上id="XXX"
加入以下代码注册到页面上
angular.element(document).ready(function () {
angular.bootstrap(document.getElementById("test11"), ["myApp"]);
});
2、控制器末尾加入:
.config(function ($sceProvider) {
$sceProvider.enabled(false);
});
备注:还有一种方式单模块的参见我的文件中另一个html页面
1