Error: Permission denied to access property "x"
JavaScript の例外 "Permission denied to access property" は、権限がない状態でオブジェクトへのアクセスの試行があった場合に発生します。
エラーメッセージ
js
Error: Permission denied to access property "x"
エラーの種類
エラーの原因
権限がない状態でオブジェクトへのアクセスの試行がありました。これは異なるドメインから読み込んだ <iframe>
要素が同一オリジンポリシーに違反する場合などです。
例
文書にアクセスする権限がない
html
<!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>