在新的页面中的iframe里打开上一个页面指定的链接
我有页面index.html、show.html、green.html、red.html其中index.html是一个目录。show.html是一个包含iframe的页面...
我有页面 index.html 、show.html 、green.html、red.html
其中index.html是一个目录。
show.html是一个包含iframe的页面。
green.html 和 red.html 是内容页面。
现在我希望在 index.html 中点击green链接后,在 show.html 里的iframe中显示green.html内容;点击red链接后,在 show.html 里的iframe中显示red.html内容。
index.html中的链接格式形如 show.html?url=green.html
请务必给出具体的代码,因为本人不是做这行的,不懂代码怎么写,所以每个页面里的代码越仔细越好,我可以直接用或稍作修改。 展开
其中index.html是一个目录。
show.html是一个包含iframe的页面。
green.html 和 red.html 是内容页面。
现在我希望在 index.html 中点击green链接后,在 show.html 里的iframe中显示green.html内容;点击red链接后,在 show.html 里的iframe中显示red.html内容。
index.html中的链接格式形如 show.html?url=green.html
请务必给出具体的代码,因为本人不是做这行的,不懂代码怎么写,所以每个页面里的代码越仔细越好,我可以直接用或稍作修改。 展开
1个回答
展开全部
给iframe一个id,比如show;在show.html取到index.html传过来的参数url;
写js代码 show.location.href=你得到的url参数;如show.location.href=“green.html”;
写js代码 show.location.href=你得到的url参数;如show.location.href=“green.html”;
更多追问追答
追问
希望能给出具体的代码,因为我不是做这行的,只是临时需要做这几个页面,自己写不出这些代码。
追答
index.html
链接
show.html
var self_url = window.location.href;
var url = self_url.split("=");
var iframe_url = url[1];
show.location.href=iframe_url;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |