A-A+
Discuz!X 2.0-3.5 注册页面轻松实现ajax浮窗获取邀请码
Discuz!默认获取邀请码的链接是在新窗口打开,简单修改两处即可实现如上图所示的ajax浮窗加载效果
适用于Discuz!X2 ~ X.5
一、编辑当前注册页面模板 \template\你的模板\member\register.htm
查找{lang register_buyinvitecode},将该A标签内的target="_blank"替换为onclick="showWindow('login', 'misc.php?mod=buyinvitecode');return false;" 即可
原代码:
<a href="misc.php?mod=buyinvitecode" target="_blank" class="xi2" rel="noopener noreferrer">{lang register_buyinvitecode}</a>
修改后:
<a href="misc.php?mod=buyinvitecode" onclick="showWindow('login', 'misc.php?mod=buyinvitecode');return false;" class="xi2">{lang register_buyinvitecode}</a>
如此就实现了利用Discuz!内置的showWindow加载获取邀请码页面了,但浮窗加载后没有关闭按钮,还需添加一个关闭按钮,方法如下
二、编辑\template\你的模板\common\buyinvitecode.htm
查找{lang invitecode_buycode},修改如下
原代码:
<h3 class="xs2">{lang invitecode_buycode}</h3>
修改后:
<h3 class="xs2">{lang invitecode_buycode}<span><!--{if !empty($_GET['infloat']) && !isset($_GET['frommessage'])}--><a href="javascript:;" class="flbc" title="{lang close}"></a><!--{/if}--></span></h3>
两处修改都是利用Discuz!原生内置JS函数,放心食用,无副作用
演示:https://cn.admxn.com/member.php?mod=register