我有一个包含五个字段和两个按钮的搜索表单。我想发布字段值以使用第二个按钮弹出。
我正在使用 get 方法,但它有编码问题; php在ie上获取数据编码
window.name = 'SearchCustomer';
function OpenPopup( url, winname, features )
{
if(winname==''){
window.open( url, winname, features, false );
return;
}
if ( !findWindow( url, winname, features ) )
{
var handle = window.open( url, winname, features, false );
if ( handle != null ) handle.focus();
}
}
function findWindow( url, winname, features )
{
var handle = window.open( '', winname, features, false );
if ( handle != null )
{
if (( handle.location != 'about:blank' ) && ( handle.location != '' ))
{
handle.focus();
return true;
}
}
return false;
}
function OpenCustomer(customerid){
OpenPopup('Customer/new.php?id='+ customerid +'', 'CustomerForm', 'channelmode=0, directories=0, fullscreen=0, width=550, height=460, location=0, menubar=0, resizable=0, scrollbars=1, status=0, titlebar=1, toolbar=0', false);
}
我无法添加 onSubmit 事件,因为搜索按钮应该在同一页面上工作。
我如何发布表单以弹出第二个按钮?