首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

Errors: Property access denied

信息

代码语言:javascript
复制
Error: Permission denied to access property "x"

错误类型

Error.

哪里出错了?

试图访问您没有权限的对象。这可能是<iframe>从违反同源策略的不同域加载的元素。

示例

代码语言:javascript
复制
<!DOCTYPE html>
<html>
? <head>
??? <iframe id="myframe" src="http://www1.w3c-test.org/common/blank.html"></iframe>
??? <script>
????? onload = function() {
        console.log(frames[0].document);
        // Error: Permission denied to access property "document"
      }
??? </script>
? </head>
? <body></body>
</html>

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com