Movatterモバイル変換


[0]ホーム

URL:


  1. Веб-технологии для разработчиков
  2. JavaScript
  3. Справочник по JavaScript
  4. JavaScript ссылки на ошибки
  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.

Что пошло не так?

Была попытка получить доступ к объекту, на который у вас нет разрешения. Вероятно, это элемент<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