在地址栏中显示当前帧的地址
我在 html 页面中使用了三个框架。最上面的框架给出了始终不变的徽标。左下框架包含到不同 jsp 页面的链接(更像是索引)。在此框架中单击的链接将显示在右下框架中。我想让右下框中当前网页的地址显示在地址栏上。 那怎么办呢?
I am using three frames in my html page. The top most frame gives the logos which is always constant. The bottom left frame contain links(more like an index) to different jsp pages. The links clicked in this frame are to be displayed in the bottom right frame. I want the address of the current webpage in the bottom right frame to be displayed on the address bar.
How can that be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一堆 JavaScript 和 pushState (注意 有限的浏览器支持),但充其量也很笨重。
我建议废弃框架并使用 JSP 将共享内容模板化为独立页面。
You could use a pile of JavaScript with pushState (note limited browser support) but it would be clunky at best.
I'd recommend scrapping the frames and using JSP to template the shared content into standalone pages.