Error: Permission denied to access property "x"
Please help us by answering a few questions.
๋ฉ์์ง
Error: Permission denied to access property "x"
์๋ฌ ํ์
๋ฌด์์ด ์๋ชป๋์์๊น?
์ ๊ทผ์ด ํ๊ฐ๋์ง ์์ ๊ฐ์ฒด์ ์ ๊ทผํ๊ธฐ ์ํ ์๋๊ฐ ์์์ต๋๋ค. ์๋ง ๋์ผ ์ถ์ฒ ์ ์ฑ
(same-origin policy)์ ์นจํดํ์ฌ ๋ค๋ฅธ ๋๋ฉ์ธ์ผ๋ก๋ถํฐ ๋ก๋๋ <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>