弹出窗口停止提供表单信息

时间:2014-08-25 16:45:07

标签: forms popupwindow

我在我公司的网站上使用了这个弹出窗口代码,它在过去的6个月里工作得非常好,突然停止了,我无法弄清楚问题,有人可以请验证下面的代码?在提交时,将查找搜索ID并在弹出窗口中显示信息,我无法弄清楚是什么会使其停止显示信息,现在它只是在弹出窗口中显示index.php页面... 。非常感谢

<form action="" method="post">
<table width="964" border="0" align="left" cellspacing="0" >
<tr >
<td width="234" height="44" style="text-align: center" ><div class="title2"></div></td>                       
<td width="187" style="text-align: center"><p>
<input type="hidden" name="quicktrack" value="LHAWB_NO">
<input name="SearchID" type="text"> 
</p></td>
<td width="537" style="text-align: left" ><input name="imageField" type="image" src="submit_button.png" align="left" border="0" onclick="popSubmit(this.form);">
<script type="text/javascript">   
function popSubmit(form)   
{   
var popStyle = "width=700,height=675,location=yes,resizable=no";   
var popName = "formPopUp";   
form.action = "http://waybilltracking.com/DCLOG/index.php";   
form.target = popName;  
window.open("",popName,popStyle);   
}   
</script>  </td>

0 个答案:

没有答案
相关问题