Toggle navigation
Toggle navigation
This project
Loading...
Sign in
김태민
/
OpenSource_Project
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
김태민
2019-12-04 15:57:26 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2b714c873aba668deeb4119c6eda39289099c858
2b714c87
1 parent
497e702e
alert 수정
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
views/recommendation.ejs
views/recommendation.ejs
View file @
2b714c8
...
...
@@ -61,7 +61,7 @@
$
(
"input[name=shape]:checkbox"
).
removeProp
(
"checked"
);
});
$
(
"#count_check"
).
click
(
function
()
{
alert
(
$
(
"input[name=shape]:checkbox:checked"
).
length
);
alert
(
"음식 형태 체크 수 : "
+
$
(
"input[name=shape]:checkbox:checked"
).
length
);
});
$
(
"#check_all"
).
click
(
function
()
{
$
(
"input[name=kinds]:checkbox"
).
prop
(
"checked"
,
"checked"
);
...
...
@@ -70,7 +70,7 @@
$
(
"input[name=kinds]:checkbox"
).
removeProp
(
"checked"
);
});
$
(
"#count_check"
).
click
(
function
()
{
alert
(
$
(
"input[name=kinds]:checkbox:checked"
).
length
);
alert
(
"음식 종류 체크 수 : "
+
$
(
"input[name=kinds]:checkbox:checked"
).
length
);
});
</script>
</article>
...
...
Please
register
or
login
to post a comment