我尝试使用弹出窗口和函数将单选按钮值存储在另一个页面中,但是当我提交单选值时,我在文本字段中收到未定义的错误。
<script langauge="javascript">
function post_value() {
opener.document.f1.OPRID.value = document.frm.OPRID.value;
self.close();
}
<input type="radio" name="OPRID" id="radio" value=<?=$objResult["OPRID"];?>>
<input type="button" value='Submit' onclick="post_value();">
和其他页面文本字段
<form method="post" action='' name='f1'>
<table border=0 width=550> <tr>
<td>Your Name</font><input id="OPRID" name="OPRID" type="text" value="<?php echo (isset($_POST
['OPRID']) ? $_POST['OPRID'] : ""); ?>"/>
<a href="javascript:void(0);"
NAME="My Window Name" title=" My title here "
onClick=window.open
("popwindow.php","Ratting","width=650,height=550,0,status=0,scrollbars=1");>
Click here to open the child window</a>
</td></tr> </table></form>
但在文本字段中我收到未定义的错误。