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.
target="_top"アンカータグで時々見かけます。それは何をするためのものか?
target="_top"
<a href="http://foobar.com" target="_top">Foobar</a>
リンクが にあるiframe場合、新しい Web ページは にロードされずiframe、代わりにブラウザがウィンドウ自体でページを開きます。
iframe
@hamonが言ったように
jQuery で _top を使用する例
サイトがフレームセットに含まれている場合
$(document).ready(function() { if(top.location != location) { $('a, form').each(function() { if(!this.target) { this.target = '_top'; } }); } });
だから..あなたのサイトのすべてのリンクは、フレームではなく新しいウィンドウで開きます (クレジット)