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.
すべてのリンクを強制的に iframe で開く方法はありますか? 表示したい Web サイトの一部は制御できますが、他の Web サイトは制御できません。php または javascript を使用したいと考えています。
ありがとう
jQueryを使用できます:
$(document).ready(function(){ $('a').attr('target', 'iframeNameHere'); });
ここに小さなサンプルがあります。