最近谷歌浏览器做了更改,默认情况下,跨域 iframe 中包含的内容不能请求或使用以下权限:
Geolocation (getCurrentPosition and watchPosition)
Midi (requestMIDIAccess)
Encrypted media extensions (requestMediaKeySystemAccess)
Microphone, Camera (getUserMedia)
所以我们必须在 iframe 中使用 allow 属性,如下所示:
<iframe src="https://example.com" allow="geolocation; microphone; camera"></iframe>
我想知道如果我使用 Object 标签而不是 iframe 会有什么影响?
提前致谢。