Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. JavaScript
  3. JavaScript 참고서
  4. JavaScript error reference
  5. Error: Permission denied to access property "x"

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

Error: Permission denied to access property "x"

메시지

    Error: Permission denied to access property "x"

에러 형식

Error.

무엇이 잘못되었을까?

접근이 허가되지 않은 객체에 접근하기 위한 시도가 있었습니다. 아마 동일 출처 정책(same-origin policy)을 침해하여 다른 도메인으로부터 로드된<iframe> 엘리먼트에 대한 것이었을 겁니다.

html
<!doctype html><html>  <head>    <iframe           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>

참조

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp