layer局部刷新用location.reload(); 刷新进首页用window.parent.location.reload();

function sends(info
        ) {
            var arr=info.split("@");
            var userid=+arr[4];
            var prefix = ctx+ "cw/integralInfo";
            var index = layer.open({            //打开layer弹出框
                type: 1,                     //类型
                skin: "layui-layer-rim",     //皮肤类型,在skin文件夹中
                area: ["400px", "300px"],    //范围大小
                title: "赠送积分"     ,        //定义标题

                content: ‘<div style="text-align:center;vertical-align:middle;margin-top: 30px;"><input id="sendjifen" style="width:200px;height:50px"type="text" placeholder="赠送数量"><br /><br /><input id="touserid"style="width:200px;height:50px"type="text" placeholder="请输入获赠用户的ID(序号)"></div>‘,       //输出的字符串,定义弹出框的html页面
                btn: [‘确定‘, ‘取消‘],    //按钮
                yes: function (index, layero) { //确定按钮的处理函数

                    $.ajax({
                        url: prefix+"/send"+"/"+userid+"/"+$("#sendjifen").val()+"/"+$("#touserid").val(),      //指向URL名称
                        type: ‘GET‘ ,                   //页面传值类型

                    success: function (e) {          //提交数据成功后的处理函数,e是返回的值
                        if (e == 1) {
                            layer.close();
                            location.reload();
                            layer.msg("积分赠送成功");
                        } else {
                            layer.msg("积分赠送失败")
                        }
                    }
                });
                }
            });
        }

原文地址:https://www.cnblogs.com/qinyios/p/12394771.html

时间: 2024-10-19 09:57:47

layer局部刷新用location.reload(); 刷新进首页用window.parent.location.reload();的相关文章

layer实现关闭弹出层刷新父界面功能详解

方案一: 在layer弹出层中调用父界面重新加载函数 ? 1 2 3 window.parent.location.reload(); varindex = parent.layer.getFrameIndex(window.name); parent.layer.close(index); 方案二: 调用layer插件的end回调方法: end - 层销毁后触发的回调 类型:Function,默认:null 无论是确认还是取消,只要层被销毁了,end都会执行,不携带任何参数. 父窗口打开lay

Js返回上一页,刷新页面,定时刷新,改变地址栏 等常用实用技巧

1. Javascript 返回上一页history.go(-1), 返回两个页面: history.go(-2); 2. history.back(). 3. window.history.forward()返回下一页 4. window.history.go(返回第几页,也可以使用访问过的URL) 例: <a href="javascript:history.go(-1);">向上一页</a> response.Write("<script

关于js中window.location.href,location.href,parent.location.href,top.location.href用法

"window.location.href"."location.href"是本页面跳转 "parent.location.href"是上一层页面跳转 "top.location.href"是最外层的页面跳转 举例说明: 如果A,B,C,D都是jsp,D是C的iframe,C是B的iframe,B是A的iframe,如果D中js这样写 "window.location.href"."locatio

关于js中&quot;window.location.href&quot;、&quot;location.href&quot;、&quot;parent.location.href&quot;、&quot;top.location.href&quot;的用法(转)

iframe框架的页面跳转             var win = self.parent.document.getElementById('right').contentWindow; win.document.location.href = "VipManage.aspx"; ========================================================================== "window.location.href&

关于js中window.location.href,location.href,parent.location.href,top.location.href的使用方法

关于js中"window.location.href"."location.href"."parent.location.href"."top.location.href"的使用方法 "window.location.href"."location.href"是本页面跳转 "parent.location.href"是上一层页面跳转 "top.locatio

关于js中window.location.href,location.href,parent.location.href,top.location.href的用法

关于js中window.location.href,location.href,parent.location.href,top.location.href的用法 "window.location.href"."location.href"是本页面跳转. "parent.location.href" 是上一层页面跳转. "top.location.href" 是最外层的页面跳转. 举例说明: 如果A,B,C,D都是html,D

如何在window的location使用target

在页面中window的location跳转时,指定页面在框架中跳转 1. 如果你要让最顶层的框架跳转,就是整个页面,相当于用traget指向顶层 window.top.location   =   "-- " 2. 如果你要让当前页面的父框架跳转 ,相当于用traget指向父框架     window.parent.location   =   "-- " 3. 如果你要让指定框架跳转 ,相当于用traget指向对应的iframe     window.top.框架

js中top.location.href、parent.location.href用法

window.location.href.location.href是本页面跳转 parent.location.href是上一层页面跳转 top.location.href是最外层的页面跳转 举例说明: window.location.href.location.href: 例:  代码如下 复制代码 window.location.href= 'wapsend1.asp?zimu=A&rev= '   +   form1.rev.value ; parent.location.href:C页

javascript:window.location.replace 与 window.location.reload() 刷新页面的不同效果

今天早上我发现一个问题,当一个网页的地址最后面是一个#时(比如:http://www.baidu.com/go.asp#), 执行:window.location.replace(window.location.href); 浏览器不刷新页面. 经过测试: window.location.href = window.location.href; 浏览器也不刷新页面. 经过测试:window.location.reload() ; 浏览器会刷新页面. 以前经过一些测试发现 window.locat