在线文档教程
JavaScript
错误 | Errors

Errors: Property access denied

Errors: Property access denied

信息

Error: Permission denied to access property "x"

错误类型

Error.

哪里出错了?

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

示例

<!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>