日期:2014-05-16  浏览次数:20304 次

js 关闭子页面刷新父页面

父页面js:
function btnAdd_onclick() {
window.open("WareConfigDetail.aspx?id=1", "","height=600, width=650, top=100, left=200,z-look=yes,toolbar=yes, menubar=no, scrollbars=yes, resizable=yes ,alwaysRaised=yes,

location=no, status=yes" );

}
function refresh()  //任意你想刷新时调用的方法
{
this.location = this.location;
}

子页面JS:

 function Save()
    {
//        debugger;
        var CheckVales='';
        $("#DivContent").find('input').each(
            function()
            {
                if(this.checked)
                {
                    var Cvalue=$(this).val();
                    CheckVales+=Cvalue+',';
                }