Html 框架编码,链接到另一个框架中的信息

发布于 2024-12-15 10:42:56 字数 122 浏览 2 评论 0原文

好的,我正在编码一些东西,我有一个左框架,一个右框架,以及粗略的主框架集 html 文档。我想在左框架中有一个链接,单击该链接将跳转到右框架上的信息,例如 和 ,但我显然不起作用,我相信我已经看到它完成了,只是不知道该怎么做。谢谢

OK so I'm coding something and i have a left frame, a right frame, and of coarse the main frameset html document. I want to have a link in the left frame that when clicked will jump to information on the right frame like and , but i obviously not working, i believe I've seen it done, just don't know how to do it. Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多像笑话 2024-12-22 10:42:56

链接目标必须是您希望将内容加载到的框架名称

<a href="http://www.google.com" target="myRightFrame">Link</a>

车架组:

<frameset cols="25%,*,25%">
  <frame src="" />
  <frame src="" />
  <frame src="" name="myRightFrame" />
</frameset>

The link target must be the name of the frame you want the content to load into.

<a href="http://www.google.com" target="myRightFrame">Link</a>

Frameset:

<frameset cols="25%,*,25%">
  <frame src="" />
  <frame src="" />
  <frame src="" name="myRightFrame" />
</frameset>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文