一尘不染

为什么ng-class =“ ng-app”破坏了AngularJS?

angularjs

为了使AngularJS在IE7和IE8中工作,我向ng-app元素添加了id =“ ng-app”和class =“ ng-app”:

<html id="ng-app" class="ng-app" ng-app="myApp">
   <div ng-view></div>
</html>

过去一直如此,但是现在我将class =“ ng-app”添加到了两个不同的项目中,并且在这两个视图中不再在任何浏览器中呈现该视图。IE7 /
8兼容性的方式已更改吗?我正在使用CDN的1.0.2版本。

谢谢。


阅读 184

收藏
2020-07-04

共1个答案

一尘不染

编辑说明: 添加doctype标记将减少一些问题。谢谢@Mike Pateras

 <!doctype html>

原版的:

试试这个

<html lang="en" class="ng-app:myapp" id="ng-app" ng-app="myapp" xmlns:ng="http://angularjs.org">
     <head>    
        <!--[if lt IE 9]>
          <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
        <![endif]-->
        <!--[if lte IE 8]>
          <script>
            document.createElement('ng-include');
            document.createElement('ng-pluralize');
            document.createElement('ng-view');
            document.createElement('ng:include');
            document.createElement('ng:pluralize');
            document.createElement('ng:view');
          </script>
        <![endif]-->
        <!--[if lt IE 8]>
          <script src="https://cdnjs.cloudflare.com/ajax/libs/json2/20150503/json2.min.js"></script>
        <![endif]-->
      </head>
2020-07-04