如何在jsp中包含一个网站

时间:2014-11-20 11:45:54

标签: html jsp iframe

我需要在我的jsp文件中包含一个网页。即:https://www.google.com

我尝试了<s:include><include>,但它没有用。 请举个例子。 Project是使用Struts2 Framework。

1 个答案:

答案 0 :(得分:1)

您需要使用<iframe>

  

<iframe>元素表示嵌套的浏览上下文。

例如:

<body>
    <span>The following is an i-framed content:</span>
    <iframe src="https://www.google.com" width="600" height="600">
    </iframe>
</body>