0

我有一个应用程序,它将显示在 iframe 中。

<iframe src="http://localhost/xxxxx.aspx"></iframe>

这个容器的高度和宽度是 900px and 600px. 我希望我的应用全屏显示,所以现在可以更改容器 iframe 的高度和宽度吗?PS iframe 不在同一个项目中,所以

$("iframe").css("height","1000px")

不能作为不同的文件工作。

4

2 回答 2

0

像这样的东西怎么样:

<iframe src="http://adobe.com" style="border:0px #FFFFFF none;" name="myiFrame" scrolling="no" frameborder="1" marginheight="0px" marginwidth="0px" height="600px" width="900px"></iframe>
于 2013-08-13T10:10:54.500 回答
0

指定应应用选择器的上下文:

 $("iframe", window.parent.document).css("height","1000px");

这是一个包含不同文件的示例:http ://www.css-arts.com/iframe_test/iframe_test.html

当 iframe 内容页面是另一个域而不是父页面时,浏览器通常会阻止对 iframe 父级的访问。如果是这种情况,你就没有机会了。

于 2013-08-13T10:02:49.107 回答