找回密码
 立即注册

只需一扫,快速开始

QQ登录

只需一步,快速开始

搜索
查看: 21207|回复: 0

[产品发布] 手机版找回密码页面,提示用户名错误的解决办法。

[复制链接]

8万

主题

418

回帖

9万

积分

管理员

积分
94485
QQ
发表于 2016-6-20 12:52:16 | 显示全部楼层 |阅读模式
由于之前我们限制了用户名>3个字符,但是部分网站的用户名没有这个限制,因此需要做一下改动。
source\plugin\zhanmishu_sms\template\touch\getpasswd.htm

查找下面代码:
  1.     function checksend(){
  2.                                         username = jQuery("#lostpw_mobileusername").val();
  3.                                         if (username.length < 3) {
  4.                                                 popup.open('{lang zhanmishu_sms:please_input_username}', 'alert');
  5.                                                 return false;
  6.                                         }else if (pwdcheckmobile(jQuery("#lostpw_mobile").val()) == false) {
  7.                                                 popup.open('{lang zhanmishu_sms:please_input_passwd}', 'alert');
  8.                                                 return false;
  9.                                         }
  10.                                         return username;
  11.                                 }
复制代码
修改为:
  1.     function checksend(){
  2.                                         username = jQuery("#lostpw_mobileusername").val();
  3.                                         if (username.length < 1) {
  4.                                                 popup.open('{lang zhanmishu_sms:please_input_username}', 'alert');
  5.                                                 return false;
  6.                                         }else if (pwdcheckmobile(jQuery("#lostpw_mobile").val()) == false) {
  7.                                                 popup.open('{lang zhanmishu_sms:please_input_passwd}', 'alert');
  8.                                                 return false;
  9.                                         }
  10.                                         return username;
  11.                                 }
复制代码


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册   

本版积分规则

QQ|Archiver|手机版|小黑屋|站秘书 ( 蜀ICP备15034504号-3 )

GMT+8, 2024-11-21 21:47 , Processed in 0.235301 second(s), 51 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表