2 つの異なる Web アプリケーションに以下の 2 つの html ファイルがあります。WebApp1(somedomain.com)
を持っPassValueIFrame.html
てWebApp2
いinputForm.html
ます。Here WebApp1 is secured and requires authentication
. 私にPassValueIFrame.html
は、を参照するiframeがありますinputForm.html
。また、隠しフィールドが 1 つPassValueIFrame.html
あり、その値を取得しようとしていますinputForm.html
が、「 」として警告される値を取得できませんPermission denied to access property 'document'
。クロスドメイン スクリプティングの問題のため。今、誰かが私を助けてくれませんかpost message in html5
?また、この機能をサポートしているさまざまなブラウザーは何ですか?
PassValueIFrame.html
<html>
<head>
<title>IFrame Example</title>
</head>
<body>
<input id="myInput" type="hidden" class="Language" value="English">
<iframe name="iframe" id="iframe_id" src="http://somedomain.com/inputForm.html" height="150" >
</iframe>
</body>
</html>
inputForm.html
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script language="javascript">
$(document).ready(function() {
alert($("#myInput", window.parent.document).val());
});
</script>
<title>IFrame Child Example</title>
</head>
<body>
<h1> Iframeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee </h1>
</body>
ありがとう!