0

我们如何在 iframe 上返回结果,页面填充在 iframe 容器内。

<form action="what.php" method="POST">
<center><input type="text" name="search"/><br/>
<input type="submit" value="Search google" name="submit">
</center></form>
<?php if (isset($_POST['submit'])) 
{ 
$a = '<iframe width="500" height="400" src="http://www.google.com/search?q='.$_POST['search'].'"></iframe>';
echo htmlentities($a);
echo $a;
}
?>

过载:自动不起作用,通过我的 iframe 上的谷歌搜索可以显示我感到幸运的结果 :) 如果我问一个愚蠢的问题,请原谅我的无知

4

1 回答 1

1

在响应标头中,您将获得“X-Frame-Options:SAMEORIGIN”。查看这个Mozilla 的文档

其他一些类似的帖子

于 2012-06-27T07:27:21.890 回答