ad8224 发表于 2013-2-6 10:10:27

J.dialog脚本运行的先后顺序

J.dialog:
页面1

//添加数据到编辑表格
function addRow(retunid, retname,retcode){
alert(retunid+retname+retcode);
}
//物品表单
function selectGoods(){
        var dlg = new J.dialog({
            id: 'selectBandDialog',
            title: '选择物品',
            width: 700,
            height: 500,
            page: "<%=AppUrl%>/jsp/bns_stock/goods/goods_selectlist.jsp",
            rang: true,
            btnBar:true,
            iconTitle:false,
            cover: true
        });
        dlg.ShowDialog();  
}
 
弹出的页面:
goods_selectlist.jsp
页: [1]
查看完整版本: J.dialog脚本运行的先后顺序