文字の貼り付け
以前、WindowOpen で文字を貼り付ける下記のスクリプトを教えて貰いましたが、ボタンAとBで貼り付ける文字を代える場合はどのようにすれば良いでしょうか?
(親ウィンドウ側)
<script type="text/javascript">
function sendMessage(_win){
_win.document.form1.test.value = "xx.htmlのフォームに表示させたい文字";
}
</script>
<input type="button" value="ボタンA" onclick="window.open('xx.html');">
<input type="button" value="ボタンB" onclick="window.open('xx.html');">
※ボタンA,Bで貼り付ける文字を変えたい。
(xx.html側)
<body onload="opener.sendMessage(window);">
<form method=POST action="http://~.cgi" name="form1">
<input type=text name="test" value="" readonly>
<input type=submit value="送 信">
</form>
お礼
ありがとうございました。