我为弹出窗口编写了以下代码:
function OpenApproveLevelPopup() {
// debugger;
//document.frmopportunity.txtopplvl.value = 'Level2';
var url = 'ApprovePopUp_shilpa.asp?opprApprLvl=' + document.frmopportunity.txtopplvl.value;
//+ document.frmopportunity.txtopplvl.value;
var windowRetVal = window.showModalDialog(url, "", "dialogHeight:150px;dialogWidth:280px;status: No;");
document.frmopportunity.txtopplvl.value = windowRetVal;
//TheForm.
return windowRetVal;
}
我使用以下代码在单击按钮时调用此函数:
<TD><INPUT class=standard type=submit value='Change Opportunity Design Level' name=ChangeOpportunityDesignLevel onclick = ' return OpenApproveLevelPopup()' ></TD></TR>"
单击弹出窗口中的“确定”按钮后,我的页面正在刷新并返回父页面,我不想要这个。即使单击“确定”按钮,请帮助我重新获得相同的结果。