我有以下两个 html 文件。在PassValueIFrame.html
我有一个 iframe 引用inputForm.html
。另外,我有一个隐藏字段,PassValueIFrame.html
我试图在其中检索它的值,inputForm.html
但没有得到它的值,它警告为“ undefined
”。我在这里做错了吗?请帮我。
PassValueIFrame.html
<html>
<head>
<title>IFrame Example</title>
</head>
<body>
<input type="hidden" class="Language" value="English">
<iframe name="iframe" id="iframe_id" src="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($(this).parent().find('.Language').html());
});
</script>
<title>IFrame Child Example</title>
</head>
<body>
<h1> Iframeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee </h1>
</body>
谢谢!