iframe正在给出空白页面

时间:2011-04-01 07:12:22

标签: html jsp iframe

我在jsp页面中使用iframe。

<iframe frameborder="1" src="view/jsp/refreshChat.jsp" STYLE='width:20%;' />

但是当我运行该页面时,它会给出一个空白页面。

3 个答案:

答案 0 :(得分:1)

这是iframe代码的示例:

<iframe src="page_to_show_inside_iframe.jsp" style="width:100%; height:250px;">
  <p>Text to show in browsers that don't support iframes.</p>
</iframe>

也许你缺少身高值。

另外,请确保正确引用 src 属性的值,即。相对路径构建正常(如果您的父网页网址为http://localhost:8080/mysite/ myparentpage.jsp 尝试加载您的子页面粘贴src值而不是您父网页的名称http://localhost:8080/mysite/ < strong> view/jsp/refreshChat.jsp ,请在新窗口或标签中进行测试)

答案 1 :(得分:0)

检查src =“view / jsp / refreshChat.jsp”是否正确。你从哪个地方使用这个?

答案 2 :(得分:0)

不要忘记将http://添加到您的网址。另外,请避免使用localhost。使用IP地址。