Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用框架集和框架来连接 3 个 html 页面。当我单击 3 个 html 页面中的任何一个中提供的链接时,就会出现问题,这些链接仅在各自的框架中打开。所以请帮助我,以便我可以在整个页面上打开这些链接而不是在框架内
使用元素target=_parent中的属性。a
target=_parent
a
您通常使用的地方:
<a href="http://www.example.com">
或在新窗口中打开:
<a href="http://www.example.com" target="_blank">
相反,将框架的名称指定为target:
target
<a href="http://www.example.com" target="nav">