如何向外部站点添加返回主页按钮?
我正在开发一个网站,其中包含一些指向外部网站(属于同一家公司)上的某些页面的链接。
客户希望添加一种轻松返回主站点的方法,即比仅使用浏览器的“后退”按钮更好的方法,以及比仅在新浏览器窗口中打开外部链接更好的方法。
鉴于我无法控制外部页面的内容,我猜测我会将这些外部页面加载到沿线某处的框架中。
那么有没有一种方法可以让链接加载带有框架集的本地页面,并将外部页面加载到其中一个框架中? (然后我们可以在另一个框架中有一个“返回主页”按钮。)
或者有更好的方法来实现这一点吗?如果推动的话,我可以扩展到一些 JavaScript...
谢谢,
斯图尔特。
I am developing a website with some links to some pages on external websites (belonging to the same company).
The client wants to add a way to easily return to the home site, i.e. something better than just using the browser's Back button, and something better than just opening the external links in a new browser window.
Seeing as I can't control the content of the external pages, I'm guessing that I will have load those external pages into a frame somewhere along the line.
So is there a way for a link to load a local page with a frameset, with the external page loaded into one of the frames? (Then we could have a "Return Home" button in the other frame.)
Or is there a better way to accomplish this? I could stretch to a bit of JavaScript if pushed...
Thanks,
Stewart.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 iframe 中显示外部网站,并在顶部(iframe 外部)有一个返回您网站的链接。请注意,某些网站使用“iframe 破坏者”,这将消除您的 iframe。
最好的选择是在新选项卡中打开 - 这就是人们期望网络的工作方式。
You'll need to display the external websites in an iframe, with a link at the top (outside of the iframe) back to your site. Note that some sites employ "iframe busters" which will get rid of your iframe.
The best option is to open in a new tab - it's how people expect the web to work.