Blogger IFRAME 从 URL 接收 URL_argument
是否有可能在 BLOGGER 平台上有一个与此类似的页面(或帖子):
blog.blogspot.com/a.html?url=http://google.com/
并且它将嵌入到 IFRAME 参数中 (http://google .com/)
我已经有了 IFRAME 的代码,但它是静态的:
<iframe src ="http://google.com/" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
附注:我的真正目标是获得 2 个参数(一个用于 URL,另一个用于返回页面),但是如果有人帮助我处理 1 个参数,我想我可以根据几个论点对其进行调整。
提前谢谢
Is it possible to have a page (or post) in the BLOGGER platform that works similar to this:
blog.blogspot.com/a.html?url=http://google.com/
And it would embed in an IFRAME the argument (http://google.com/)
I already have the code for the IFRAME, but it's static:
<iframe src ="http://google.com/" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
Ps.: My real objective is to get 2 arguments (one for the URL and another for the return page), but If someone helps me with 1 argument, I think I can adapt it for several arguments.
Thnx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
完毕。
我在博客上测试过,确实有效。
希望这有帮助
Done.
I tested it in bloger and it does work.
Hope this helps
您只需要获取
window.location.href
字符串,然后解析出相关部分即可。有关如何进行解析的示例,请参阅本教程。You just need to get the
window.location.href
string and then parse out the relevant parts. For an example on how to do the parsing, see this tutorial.你必须使用 javascript 才能做到这一点
you have to use javascript todo so