第1页:test.php(在弹出窗口中打开)
<script type="text/javascript">
function addFiles(aFiles) {
if ($('#addfiles').length==0) $('#addfiles').html;
for (var i=0;i<aFiles.length;i++) $("#addfiles").append(""+aFiles[i].file+"");
}
</script>
<?php
$result = "<div id=\"addfiles\"></div>"; (everything works good here, i have only one result)
?>
Page2:results.php(主页,已经打开)
<input type="texta" name="texta" id="texta" value="<? echo $result; ?>"/>
(当 $result 有一些结果而不刷新所有页面时,我需要 value="" 使用 $result 自动更新。)
谢谢
编辑:
function addFiles(aFiles) {
if ($('#addfiles').length==0) $('#addfiles').html;
for (var i=0;i<aFiles.length;i++) $("#addfiles").append(""+aFiles[0].file+"");
(window.opener.location = 'http://www.example.com/value='+aFiles[0].file+'');
self.close();
}
现在工作得很好。谢谢