私はJavascriptが初めてなので、ご容赦ください。
子ウィンドウが閉じたときに親ウィンドウの div を更新するコードがあります。問題は、div のコンテンツが更新されたときに重複が作成されることです。その理由はわかりません。私のコードは以下です。
親のタグ内でhead
私はこれをやっています:
<html>
<head>
<script language="javascript" type="text/javascript">
function ParentWindowFunction()
{
$(".mydiv").load("Welcome.jsp");
return false;
}
</script>
</head>
<body>
<div class="mydiv">
<img src="<s:property value="#session.img"/>" id="img" width="200" height="150" />
</div>
</body>
</html>
私が持っている子ウィンドウのhead
タグの中に:
<html>
<head>
<script type="text/javascript">
function refreshAndClose()
{
window.opener.ParentWindowFunction();
window.close();
}
</script>
</head>
<body onbeforeunload="refreshAndClose();">
...
</body>
</html>