Authored by htoooth

fix

... ... @@ -248,7 +248,7 @@ function code() {
// 发送手机验证码ajax请求
function sendMobileMsg(mobileV) {
var $code = $('#inputcode'),
$ccheckInfo = $code.parent().find('check-info');
$ccheckInfo = $code.parent().find('.check-info');
var reqData = {
mobile: mobileV
};
... ... @@ -260,7 +260,7 @@ function sendMobileMsg(mobileV) {
reqData.verifyCode = captcha.getResults();
$.post('/home/account/sendmobilemsg', reqData, function(result) {
if (typeof result.code !== 'undefined' && result.code === 200) {
if (result.code && result.code === 200) {
canSend = false;
sInt = setInterval(function() {
code();
... ...