html <base>通过外部链接影响iframe“ src”代码

时间:2019-11-22 07:45:04

标签: html iframe base-url

我有页面相对链接的基本URL <base href="https://www.example.com/" target="_self">。 问题是,它正在影响要嵌入的外部iframe的 src =“”

​<iframe width="600" height="300" frameborder="0" src="​https://external-example.to/something/widget?width=600&height=300&note=​"></iframe>

其他从我的域https://www.example.com/加载内容的iframe正常运行。

例如<iframe width="600" height="300" frameborder="0" src="​https://www.example.com/something/some-thing"></iframe>不受影响。

基本网址,如果将其值强制为外部iframe的 src

​<iframe width="600" height="300" frameborder="0" src="​https://www.example.com/​https://external-example.to/something/widget?width=600&height=300&note=​"></iframe>

如何避免这种 https://www.example.com/​https://external-example.to/something/widget?width=600&height=300&note= 发生?

谢谢。

0 个答案:

没有答案