我在页面中调用了 iframe,并且在 iframe 中有一个链接,点击时应该打开另一个页面。但是当我在 php 中使用标题标签时,它会在 iframe 中加载页面。我该如何解决这个问题?
第 1 页:
<iframe width="990" height="245" src="example2.php?id=<?php echo $_GET['id'];?>" frameborder="0" scrolling="no" ></iframe>
iframe - example.php?id= :
<?php
header ("Location: example3.php?class=<?php echo $_GET['classid']");
?>
如何将此页面重定向到另一个页面而不在第 1 页的 iframe 内加载?