我需要在 iframe 的 scr 中传递 url var
我需要知道如何将此链接中 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$_SERVER['QUERY_STRING']
包含查询字符串(“.php 部分之后的所有内容”,除了“?”)。因此,如果您在 php 页面中,您可以执行以下操作:
将已发送到包含 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:
to pass the whole query-string that has been send to the page containing the iframe to the src of the iframe.