Showing
1 changed file
with
2 additions
and
2 deletions
| ... | @@ -61,7 +61,7 @@ | ... | @@ -61,7 +61,7 @@ |
| 61 | $("input[name=shape]:checkbox").removeProp("checked"); | 61 | $("input[name=shape]:checkbox").removeProp("checked"); |
| 62 | }); | 62 | }); |
| 63 | $("#count_check").click(function() { | 63 | $("#count_check").click(function() { |
| 64 | - alert($("input[name=shape]:checkbox:checked").length); | 64 | + alert("음식 형태 체크 수 : "+$("input[name=shape]:checkbox:checked").length); |
| 65 | }); | 65 | }); |
| 66 | $("#check_all").click(function() { | 66 | $("#check_all").click(function() { |
| 67 | $("input[name=kinds]:checkbox").prop("checked", "checked"); | 67 | $("input[name=kinds]:checkbox").prop("checked", "checked"); |
| ... | @@ -70,7 +70,7 @@ | ... | @@ -70,7 +70,7 @@ |
| 70 | $("input[name=kinds]:checkbox").removeProp("checked"); | 70 | $("input[name=kinds]:checkbox").removeProp("checked"); |
| 71 | }); | 71 | }); |
| 72 | $("#count_check").click(function() { | 72 | $("#count_check").click(function() { |
| 73 | - alert($("input[name=kinds]:checkbox:checked").length); | 73 | + alert("음식 종류 체크 수 : "+$("input[name=kinds]:checkbox:checked").length); |
| 74 | }); | 74 | }); |
| 75 | </script> | 75 | </script> |
| 76 | </article> | 76 | </article> | ... | ... |
-
Please register or login to post a comment