Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOOD
·
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
whb
9 years ago
Commit
240af41622cffec0bd154bb9e98445ebe7fd644d
1 parent
75dadf07
在线登记
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
res/js/yohood.js
res/js/yohood.js
View file @
240af41
...
...
@@ -764,6 +764,21 @@ define('yohood', function(require, exports) {
//在线登记
exports
.
onlinereg
=
function
()
{
$
(
".content-header a"
).
bind
(
"click"
,
function
(
e
)
{
var
href
=
$
(
this
).
attr
(
"href"
);
$
(
this
).
attr
(
"href"
,
"javascript:void(0)"
);
if
(
window
.
confirm
(
"切换后已填信息将被清空,是否切换?"
))
{
window
.
location
.
href
=
href
;
}
else
{
$
(
this
).
attr
(
"href"
,
href
);
return
false
;
}
});
$
(
".apply-operate span"
).
bind
(
"click"
,
function
()
{
window
.
location
.
href
=
$
(
this
).
attr
(
"href"
);
...
...
Please
register
or
login
to post a comment