我需要在 iframe 的 scr 中传递 url var

发布于 2024-08-19 10:52:02 字数 702 浏览 3 评论 0原文

我需要知道如何将此链接中 .php 部分之后的所有内容传递

"http://wreckedclothing.net/help/[email protected]&t=985559"

到同一页面上的 iframe。 “托管在同一站点上” 像这样

"<iframe>
      src="http://www.wreckedclothing.net/[email protected]&t=985559"
      frameborder="0"
      width="829"
      name="tree"></iframe>

看看它如何将所有内容添加到 src 中的链接

i need to know how to pass everything after the .php part in this link

"http://wreckedclothing.net/help/[email protected]&t=985559"

to a iframe on the same page. "hosted on the same site"
like this

"<iframe>
      src="http://www.wreckedclothing.net/[email protected]&t=985559"
      frameborder="0"
      width="829"
      name="tree"></iframe>

see how it adds everything to the link in src

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

開玄 2024-08-26 10:52:02

$_SERVER['QUERY_STRING'] 包含查询字符串(“.php 部分之后的所有内容”,除了“?”)。

因此,如果您在 php 页面中,您可以执行以下操作:

<iframe src=[YOUR_URL_HERE]?<?php echo $_SERVER['QUERY_STRING']; ?>></iframe>

将已发送到包含 iframe 的页面的整个查询字符串传递到 iframe 的 src。

$_SERVER['QUERY_STRING'] contains the query string ("everything after the .php part", except the "?", that is).

So if you're in a php-page, you could do something like this:

<iframe src=[YOUR_URL_HERE]?<?php echo $_SERVER['QUERY_STRING']; ?>></iframe>

to pass the whole query-string that has been send to the page containing the iframe to the src of the iframe.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文