This page was translated from English by the community.Learn more and join the MDN Web Docs community.
Error: Permission denied to access property "x"
Сообщение
Error: Permission denied to access property "x"
In this article
Тип ошибки
Что пошло не так?
Была попытка получить доступ к объекту, на который у вас нет разрешения. Вероятно, это элемент<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>