我尝试了不同类型的html标签,称为iframe,embed,object以加载外部网站。其中一些加载正常,但其中一些没有加载。
我在google中搜索查询,得到一些结果,例如“出于安全原因,某些网站可能会阻止iframe,嵌入对象”
我想要的是,我需要在项目中加载另一个网站。有什么办法吗?
<iframe src="https://www.google.co.in/" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</iframe>
<embed src="https://www.google.co.in/" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</embed>
<object src="https://www.google.co.in/" width="100%" height="300">
<p>Your browser does not support iframes.</p>
</object>
当我尝试这些操作时,显示错误,例如“ https://www.google.co.in/拒绝连接。”