如何弹出页面窗口选择返回值

发布时间:2019-10-08编辑:脚本学堂
如何实现网页中点击一个按钮,然后弹出一个页面窗口,选择弹出页面窗口的值,关闭窗口,界面得到值。

对话框要显示的页面中<head></head>标签内加入“ <base target="_self" /> ”。
处理回发弹出新页面的问题

主要功能:
在网页中 点击一个按钮 弹出一个页面窗口,选择弹出页面窗口的值,关闭窗口,界面得到值

代码:
 

复制代码 代码示例:
//对b界面选择值处理
<input type="button" id="btnclose" value="确认并关闭窗口" onclick="closewin()" />
function closewin() {
//把b界面的值传到a界面去
window.returnvalue = totalcount;
window.close();
}
//a界面需要选择值
function showunitdialog2(id) {
var rdm = math.random();
//打开b界面
var result = window.showmodaldialog("goodsstocketacke.aspx?id=" + id + "&t=" + rdm, "盘点明细", "dialogwidth=800px;dialogheight=500px;center=1");
//接受b界面的值
if (result) {
$("#txtrealcount").val(result);
$("#txtrealcount").attr("readonly", "true");
$("#tbunit tr:eq(1) td:eq(3)").html(result);
initbutton();
}
}