4

我在 popup.html 中添加了 iframe 和 jquery。

<iframe id="xyz" border="0" src="https://xyz.com/test"></iframe>

并尝试通过控制台使用此命令访问此 iframe 的元素:

$("#xyz").contents().find("body").fadeIn();

但它给出了这个错误:

Unsafe JavaScript attempt to access frame with URL https://xyz.com/test from frame with URL chrome-extension://my-extension-id/popup.html. The frame requesting access has a protocol of 'chrome-extension', **the frame being accessed has a protocol of 'https'. Protocols must match**

我在谷歌上搜索了这个错误,但没有这样的错误。他们都说域必须匹配等。但是这个说只有协议必须匹配。我该如何解决这个协议问题?

我的清单文件中有这一行。

"permissions": [
    "*://xyz.com/*"
]
4

1 回答 1

0

似乎是同源政策的问题。

尝试遵循本讨论中提到的解决方案。另外,在尝试使用 jQuery 之前,请先尝试通过本机 Javascript 进行操作。

于 2012-11-17T14:08:21.293 回答