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

你可能感兴趣的:(jsp,脚本,J#)