需要两个文件

a.html代码:

<html>
<head>
<title>父页面</title>
</head>
<body>
<input id="crossDomainInput" type="text" />
<iframe src="b.html"></iframe>
</body>
</html>

b.html代码:

<html>
<head>
<title>c.html</title>
</head>
<script type="text/javascript">
parent.parent.document.getElementById("crossDomainInput").value="我是在域被运行的";
</script>
<body>
</body>
</html>