我正在尝试使用div标签以及div标签之间的链接将两个网站(如YouTube和Google)嵌入到一个页面中。...有什么办法可行?
答案 0 :(得分:2)
您正在寻找<iframe>
标签。
答案 1 :(得分:0)
尝试在链接设置为所需页面的情况下使用iframe
答案 2 :(得分:0)
通常,iframe标签用于嵌入整个网站。 (请参阅MDN article),但YouTube和Google显然已阻止了该选项。 (请参见下面的代码段运行时间)
<iframe
width="500"
height="100"
src="https://www.wikipedia.org">
</iframe>
<iframe
width="500"
height="100"
src="https://www.google.com">
</iframe>
<iframe
width="500"
height="100"
src="https://www.youtube.com">
</iframe>
答案 3 :(得分:0)
它们定义了三种类型,可以在您的网页中添加其他任何网站。
注意:但是如今,由于某些安全问题,Google,Facebook和其他许多网站不允许您将其网站或网页加载到您的网页上。
<iframe src="https://www.example.com" height="200" width="300"></iframe>
<object data="https://www.example.com" width="400" height="300" type="text/html">
Alternative Content
</object>
<embed src="https://www.example.com" width=200 height=200 onerror="alert('URL invalid !!');" />