Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
unknown
9 years ago
Commit
390bafe6e4f9458c84760c894c32fc5ee01e7cb8
1 parent
a91b3b61
验证码js @review by 王成龙
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
16 deletions
web-static/js/passport/vertification.js
web-static/js/passport/vertification.js
View file @
390bafe
...
...
@@ -17,7 +17,7 @@ $sc.click(function() {
$
.
post
(
'/passport/back/sendbackmobile'
,
{
mobile
:
$
(
'#mobile'
).
val
(),
area
:
$
(
'#area'
).
val
(),
verifyCode
:
$
(
'#captchaPic'
).
val
()
,
verifyCode
:
$
(
'#captchaPic'
).
val
()
},
function
(
jsonData
)
{
if
(
jsonData
.
code
===
200
)
{
$errTip
.
hide
();
...
...
@@ -71,17 +71,33 @@ itime = setInterval(function() {
$
(
'#captcha'
).
keyup
(
function
()
{
var
v
=
$
.
trim
(
$
(
this
).
val
());
if
(
v
!==
''
)
{
//添加验证码正确验证
//$next.removeClass('disable').prop('disabled', false);
$next
.
removeClass
(
'disable'
).
removeAttr
(
'disabled'
);
}
else
{
//$next.addClass('disable').prop('disabled', true);
$next
.
addClass
(
'disable'
).
attr
(
'disabled'
,
true
);
var
v
=
$
.
trim
(
$
(
this
).
val
()),
that
=
this
;
if
(
v
.
length
===
4
)
{
$
.
ajax
({
type
:
'POST'
,
url
:
'/passport/back/backmobile'
,
dataType
:
'json'
,
data
:
{
verifyCode
:
$
(
'#captcha'
).
val
(),
area
:
$
(
'#area'
).
val
(),
mobile
:
$
(
'#mobile'
).
val
()
},
success
:
function
(
res
)
{
if
(
res
.
code
===
200
)
{
//添加验证码正确验证
$next
.
removeClass
(
'disable'
).
removeAttr
(
'disabled'
);
$errTip
.
addClass
(
'hide'
);
$
(
that
).
removeClass
(
'error'
);
}
else
{
$next
.
addClass
(
'disable'
).
attr
(
'disabled'
,
true
);
$errTip
.
removeClass
(
'hide'
).
find
(
'em'
).
text
(
'验证码输入错误'
);
$
(
that
).
addClass
(
'error'
);
}
}
});
}
}).
blur
(
function
()
{
var
v
=
$
.
trim
(
$
(
this
).
val
());
...
...
@@ -90,10 +106,7 @@ $('#captcha').keyup(function() {
//添加验证码正确验证
$
(
this
).
addClass
(
'error'
);
$errTip
.
removeClass
(
'hide'
);
}
else
{
$
(
this
).
removeClass
(
'error'
);
$errTip
.
addClass
(
'hide'
);
$errTip
.
removeClass
(
'hide'
).
text
(
'请输入验证码'
);
}
}).
focus
(
function
()
{
$
(
this
).
removeClass
(
'error'
);
...
...
Please
register
or
login
to post a comment