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.
我使用 HTML iframe 元素在我的网站中放置了一个在线编译器网站。基本上,我希望用户直接在我的网站上编译和编写代码,而无需使用在线编译器打开单独的选项卡。
现在,我想知道是否有一个选项可以“剪切”我网站内的 iframe 元素显示的网站的一部分。以某种方式限制用户只看到我希望他看到的那个网站的一部分。
我想提一下,我不想使用任何其他方法,只是 iframe 元素。谢谢 :)
而不是使用 iframe 你可能想试试这个(Jquery)
$('#target-div').load('http://www.mywebsite.com/portfolio.php #portfolio-sports');
来自: https ://stackoverflow.com/a/3272151/15263184