admin管理员组文章数量:1341878
Lets say I have the following webpage
www.fake/sample.html
I could pass some parameters to that webpage, like so
www.fake/sample.html?count=10&format=gold
this page has an iframe in it, I would like to pass any parameters that the main page gets to the enclosed iframe. If the main page is called like so
www.fake/sample.html?count=10&format=gold
the iframe in the sample page should be called with those same paramters.
<iframe src="www.fake/framed_page.html?count=10&format=gold"></iframe>
What is the easiest way to do this?
Lets say I have the following webpage
www.fake./sample.html
I could pass some parameters to that webpage, like so
www.fake./sample.html?count=10&format=gold
this page has an iframe in it, I would like to pass any parameters that the main page gets to the enclosed iframe. If the main page is called like so
www.fake./sample.html?count=10&format=gold
the iframe in the sample page should be called with those same paramters.
<iframe src="www.fake./framed_page.html?count=10&format=gold"></iframe>
What is the easiest way to do this?
Share edited May 14, 2010 at 14:10 Janak asked May 13, 2010 at 10:44 JanakJanak 5,0858 gold badges35 silver badges43 bronze badges 2- FYI, your slashes are the wrong way round – Adam Hopkinson Commented May 13, 2010 at 10:51
- Fixed the slashes. Also, i don't have access to a server-side language – Janak Commented May 14, 2010 at 14:11
2 Answers
Reset to default 5In the javascript of the child document (framed_page.html
) you can call window.parent.location
to get the location object of sample.html
. Call window.parent.location.search
to get the query string
The easiest and most reliable way (because it doesn't require JavaScript to work) would be to use a server-side language to pose the correct iframe URL from the QUERY_STRING
server variable.
In PHP:
<iframe src=
"www.fake.\framed_page.html?<?php echo $_SERVER["QUERY_STRING"]; ?>">
</iframe>
本文标签: javascriptHow to pass url parameters onto a iframeStack Overflow
版权声明:本文标题:javascript - How to pass url parameters onto a iframe? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743685670a2521853.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论