Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Error: Permission denied to access property "x"

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

메시지

Error: Permission denied to access property "x"

에러 형식

Error.

무엇이 잘못되었을까?

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

<!DOCTYPE html>
<html>
  <head>
    <iframe id="myframe" src="https://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>

참조

문서 태그 및 공헌자

 이 페이지의 공헌자: magnoliaa
 최종 변경: magnoliaa,