常用javascript片断

frame子窗口操作父窗口

<head>

<script language="javascript">
    document.domain = "sonhoo.com"; //指定 document 所属的域 
    function returndate() {

window.parent.document.getElementById("pic_1").value = "";
        window.parent.document.getElementById("abcform").submit();
    }
</script>
</head>
<body  onload="returndate();">
</body>

你可能感兴趣的:(常用javascript片断)