<form name= "search " method= "post " action= "3mtrans.asp " target= "bottom2 " onsubmit= "return submit_a(); ">
<script>
function submit_a(){
window.frames[ 'middle '].location= '3Mline.asp?shipno= '+search.shipno.value;
return true;
}
</script>
我现在有三个框架 top middle bottom2
top中有个表单
上面那段代码是top中表单提交时候的代码
目的是提交表后,将shipno传递到middle和bottom2这两个框架
可现在只有bottom2这个框架在提交后能更新 显示数据
middle这个框架却没有变化
求教
------解决方案--------------------
window.frames[ 'middle '].location
==>
top.frames[ 'middle '].location.href