Heim  >  Artikel  >  Backend-Entwicklung  >  iframe的框架内链接指向本页无响应

iframe的框架内链接指向本页无响应

WBOY
WBOYOriginal
2016-06-23 13:57:031036Durchsuche

在iframe的框架内,如果框架内当前页为news.php,里面有个链接指向news.php?id=1,点完后,框架全部空白,也没有加载页面.
就是指向本页链接带参数的无响应


回复讨论(解决方案)

显示内容的位置 定义了没

链接有加target="framename"吗?

链接有加target="framename"吗?


不行啊,加上这个成另一页打开了啊!

显示内容的位置 定义了没


定义啥????????

main.php iframe news.php
news.php 里面有连接,连去news.php?id=1
点击后可以在iframe内跳转。
main.php

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title> main </title> </head> <body>  <iframe src="news.php"></iframe> </body></html>

news.php
<?php$id = isset($_GET['id'])? $_GET['id'] : '';echo 'news'.$id.'<br>';echo '<a href="news.php?id=1">news1</a>';?>

main.php iframe news.php
news.php 里面有连接,连去news.php?id=1
点击后可以在iframe内跳转。
main.php

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title> main </title> </head> <body>  <iframe src="news.php"></iframe> </body></html>

news.php
<?php$id = isset($_GET['id'])? $_GET['id'] : '';echo 'news'.$id.'<br>';echo '<a href="news.php?id=1">news1</a>';?>


是这种情况,但链接news.php?id=1点不开
如果换成list.php?id=1点得开

list.php?id=1 点得开
news.php?id=1 点不开
显然是 news.php 有问题!

问题没有找到,换文件名就可以了

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn