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 中打开?我可以控制一些我想展示的网站,但不能控制其他网站。我愿意使用 php 或 javascript。
谢谢
您可以使用 jQuery:
$(document).ready(function(){ $('a').attr('target', 'iframeNameHere'); });
这里的小样本。