index.html:
<body>
<input type="text" name="aa" value="" />
<iframe id="f" src="1.html"></iframe>
</body>
1.html:
<a href="#" οnclick="ok()">ok</a>
<script type="text/javascript">
function ok(){
input=top.document.getElementsByName("aa");
input[0].value="哈哈";
}
</script>