迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
点击退出账号,返回当前页,该如何写,求大神指点
现在点击退出账号后跳转到网站首页
<a href="javascript:;" onclick="dr_loginout()">退出账号</a>
function dr_loginout(url) { $.ajax({type: "GET",dataType:"json", url: dr_get_web_dir()+'index.php?s=api&c=api&m=loginout', success: function(json) { var oss_url = json.data.sso; // 发送同步登录信息 for ( var i = 0; i < oss_url.length; i++){ var result = fetchJsonp(oss_url[i], { jsonpCallback: 'callback', timeout: 3000 }) result.then(function(response) { return response.json() }).then(function(json) { })['catch'](function(ex) { }); } dr_cmf_tips(1, json.msg, json.data.time); if (url) { setTimeout("window.location.href = '"+tourl+"'", 2000); } else { setTimeout('window.location.href="'+json.data.url+'"', 2000); } }, error: function(HttpRequest, ajaxOptions, thrownError) { dr_ajax_alert_error(HttpRequest, this, thrownError); } }); }