0

我在 src url 中有一个带有参数的 iframe,如下所示:

<iframe src="http://www.form-page.com?suppressRedirect=1&A=1841" width="271px" height="295px" scrolling="no" frameborder="no" allowtransparency="true" style="position: absolute;left: 0;z-index: 1000;padding-left: 5px;"></iframe>



我需要在“表单页面” 中获取参数
有没有办法在 php 或 jquery 中做到这一点?

4

4 回答 4

2

是的,在 php 中检查 $_GET 数组

$_GET['suppressRedirect'];
$_GET['A'];

值应分别为 1 和 1841

于 2012-05-22T14:15:32.870 回答
1

您正在通过查询字符串传递参数,就像任何正常请求一样。

$_GET['suppressRedirect']; // = 1
$_GET['A']; // = 1841
于 2012-05-22T14:16:00.443 回答
0

在您的 index.php 上,您可以获取这些参数的值,例如:

$suppressRedirect = $_GET['suppressRedirect'];
$A = $_GET['A'];
// use these two variables as you like now
于 2012-05-22T14:18:42.433 回答
0

您已经以通常的方式通过 URL 传递所有参数,即通过 $_GET 变量!
所有参数都存储在超全局变量(数组类型)$_GET 中。

在您的页面中:

http://www.form-page.com?suppressRedirect=1&A=1841

假设您在 index.php 文件中以$_GET['A']和的形式接收这些参数$_GET['suppressRedirect']

OBS:PHP 变量区分大小写:$_GET['A']$_GET['a']

于 2012-05-22T14:19:14.103 回答