欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

NET 弹出页面窗口选择返回值

程序员文章站 2024-03-31 12:42:10
在对话框要显示的页面中标签内加入“ ”。 处理回发弹出新页面的...
在对话框要显示的页面中<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();
}
}

上一篇: 浅谈java中的路径表示

下一篇: