Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/396.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
Javascript extjs在internet explorer 9的iframe中不呈现任何内容_Javascript_Jquery_Iframe_Extjs_Internet Explorer 9 - Fatal编程技术网

Javascript extjs在internet explorer 9的iframe中不呈现任何内容

Javascript extjs在internet explorer 9的iframe中不呈现任何内容,javascript,jquery,iframe,extjs,internet-explorer-9,Javascript,Jquery,Iframe,Extjs,Internet Explorer 9,我用extjs开发的iframe内容在Chrome、firefox和safari中完美地显示出来 它不会在internet explorer的iframe中呈现任何内容。我确保sencha cmd中没有警告。没有额外的逗号,我在I.e.9中查看了控制台,它没有显示任何错误 这是在iframe中呈现mywebpage的div $('#app0 Frame').height($(window.height()-110) 这是mywebpage.html内容 我的网页 标题由jquery中的其

我用extjs开发的iframe内容在Chrome、firefox和safari中完美地显示出来

它不会在internet explorer的iframe中呈现任何内容。我确保sencha cmd中没有警告。没有额外的逗号,我在I.e.9中查看了控制台,它没有显示任何错误

这是在iframe中呈现mywebpage的div


$('#app0 Frame').height($(window.height()-110)
这是mywebpage.html内容


我的网页

标题由jquery中的其他团队开发,我们的网页必须放在iframe中,我们正在使用extjs开发iframe内容。

如何启动应用程序?上面的html页面只有bootstrap.js,没有app.js。目前该应用程序正在开发中。我正在进行sencha应用程序监视并能够启动该应用程序。我的意思是,应用程序代码在哪里?通常你在
index.html
中有到
app.js
脚本的链接,但我在上面没有看到。当你提到app.js时,我尝试过链接app.js“”,但它也不起作用。
<div aria-hidden="false" aria-expanded="true" style="display: block;" role="tabpanel" class="ui-tabs-panel ui-widget-content ui-corner-bottom" aria-labelledby="ui-id-1" id="cmeTabs-app0"><iframe id="app0-Frame" class="ifrmclass" src="mywebpage.html" style="height: 876px;" frameborder="0"></iframe></div></div>
                <script type="text/javascript">$('#app0-Frame').height($(window).height() - 110)</script>
<html>
<head>
    <title>MyWebPage</title>
    <!-- Importing styles -->
    <link rel="stylesheet" type="text/css" href="ext-theme-gray/build/resources/ext-theme-gray-all.css" />
    <link rel="stylesheet" type="text/css" href="css/ext/ext-all-debug.css" />

    <link rel="stylesheet" type="text/css" href="css/mystyles.css" />

    <link rel="stylesheet" href="css/font-awesome.min.css">

    <script id="microloader" type="text/javascript" src="bootstrap.js"></script>

</head>
<body>
  <div id="myGrid" class="myGridContainer">
  </div>
</body>
</html>