我已經有了一個簡單的html代碼,並且在其上有一個iframe,並且我想訪問父級以外iframe的全局變量。使用Chrome訪問全局變量
任何人都知道爲什麼鉻不想讓我快樂? :)
iframe的代碼在ff中工作正常,即...但不是chrome。
HTML代碼:
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script> var one = "two"; </script>
.....
<body>
<iframe name="process" id="process" src="" frameborder=1></iframe>
</body>
</html>
,iframe代碼:
<html>
<head>
<script> alert("Inside step 1 : "+parent.one); </script>
</head>
<body>
STEP 1
</body>
</html>
可能的重複:http://stackoverflow.com/questions/5777289/cant-access-content-of-another-frame-in-chrome – ean5533 2011-12-28 16:14:38
@ ean5533是不一樣的事情,因爲我正在訪問一個全球範圍可變的,而不是來自不同框架的內容與他們的ID。另外,這是一個iframe – dyoser 2011-12-28 16:29:08