NET 弹出页面窗口选择返回值
程序员文章站
2024-03-31 11:47:40
在对话框要显示的页面中标签内加入“ ”。 处理回发弹出新页面的...
在对话框要显示的页面中<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();
}
}
处理回发弹出新页面的问题
主要功能描述:
在网页中 点击一个按钮 弹出一个页面窗口,选择弹出页面窗口的值,关闭窗口,界面得到值
复制代码 代码如下:
//对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();
}
}