Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/84.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 在IE8中使用进度标记时,引导模式不起作用_Html_Twitter Bootstrap_Angularjs_Internet Explorer 8 - Fatal编程技术网

Html 在IE8中使用进度标记时,引导模式不起作用

Html 在IE8中使用进度标记时,引导模式不起作用,html,twitter-bootstrap,angularjs,internet-explorer-8,Html,Twitter Bootstrap,Angularjs,Internet Explorer 8,我正在用IE8敲打我的脑袋(为什么这个浏览器还在使用,我简直疯了) 我正在使用angular.js和bootstrap构建一个应用程序,这应该得到IE8 asswell的支持 我的应用程序目前在chrom、FF、IE10和IE9上运行良好 我已在我的index.html标记处贴花: <!--[if lte IE 8]> <script src="js/json3.js" type="text/javascript"></script>

我正在用IE8敲打我的脑袋(为什么这个浏览器还在使用,我简直疯了)

我正在使用angular.js和bootstrap构建一个应用程序,这应该得到IE8 asswell的支持

我的应用程序目前在chrom、FF、IE10和IE9上运行良好 我已在我的index.html标记处贴花:

  <!--[if lte IE 8]>
      <script src="js/json3.js" type="text/javascript"></script>
    <![endif]-->

    <!--[if lte IE 8]>
      <script>
        document.createElement('login');
        document.createElement('register');
        document.createElement('change-details');
        document.createElement('tooltip-popup-delay');
        document.createElement('tooltip');
        document.createElement('datepicker-popup');


      </script>
    <![endif]-->

<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
 <!--[if lt IE 9]>
     <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
 <![endif]-->

我有一个指令(login),它有一个带有login模式的templateUrl

然后我就这样使用它:

<div ng-show="showNav" ng-controller="NavCtrl">
    <login></login>
    <register></register>
    .....
.....

.....
.....
这是我的登录模式的一部分(它是templateUrl指令中的login.html):


&时代;
{{loginHeader}}
请稍等
用户名
.....
现在由于一些未知的原因,似乎 我试着在不使用bootstraps的情况下实现常规进度。仍然没有成功

我甚至尝试将login.html内容放在index.html中,而不是使用指令,但仍然没有成功

我尝试添加document.createElement('progress'),但也没有成功


在我销毁IE8之前,请帮助我。

您还需要创建
progress
元素,因为它是一个指令。你错过了

document.createElement('progress');
document.createElement('progress');