Notice
Recent Posts
Recent Comments
์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array ๊ฐ์ฒด
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
Archives
- Today
- In Total
A Joyful AI Research Journey๐ณ๐
230329 jQuery ์ ์ฒด ์ฝ๊ด, ์ ํ ์ฝ๊ด ๋๋ ์ ๋ ์ ์ฒด, ํน์ ์ฒดํฌ ๋ฐ์ค ํด๋ฆญ ๋๊ฒ ๋ง๋ค๊ธฐ ๋ณธ๋ฌธ
๐ปBootcamp Self-Study Revisionโจ/JavaScript, jQuery, Ajax
230329 jQuery ์ ์ฒด ์ฝ๊ด, ์ ํ ์ฝ๊ด ๋๋ ์ ๋ ์ ์ฒด, ํน์ ์ฒดํฌ ๋ฐ์ค ํด๋ฆญ ๋๊ฒ ๋ง๋ค๊ธฐ
yjyuwisely 2023. 3. 30. 00:16230329
๊ธฐ๋ณธํ์ ์๋์ ๊ฐ๊ณ
input์ name, type, id ๋ฑ ๋ค์ํ ๊ฑธ ๋ฃ์ ์ ์๋ค.
๊ฒ์ํ๋ฉด ๋ณดํต ์ ์ฒด ์ฝ๊ด ๋์๋ง ๋ ์ ๊ทธ๋ฐ๋ฐ
์ ํ ์ฝ๊ด ์ฝ๋๋ ๋ฃ์๋ค.
<script type="text/javascript" src="https://code.jquery.com/jquery-3.6.3.min.js"></script><!-- jQuery ๋ถ๋ฌ์จ๋ค -->
์ฝ๋) ์ ์ฒด ์ฝ๊ด, ์ ํ ์ฝ๊ด, ์ด๋ฉ์ผ, SMS ๊ฐ ๋๋ ์ ๋ ์ฒดํฌ๋ฐ์ค ์ฒดํฌ๋๊ฒ ๋ง๋ค๊ธฐ
//์ ์ฒด ์ฝ๊ด ๋์
function checkAll() {
if ($("#TermsOfService").is(':checked')) {
$("input[name=sub_TermsOfServiceRequired]").prop("checked", true);
} else {
$("input[type=checkbox]").prop("checked", false);
}
}
//์ ํ ์ฝ๊ด ๋์
function checkOptional() {
if ($("#TermsOfServiceOptional").is(':checked')) {
$("input[name=sub_TermsOfServiceOptional]").prop("checked", true);
} else {
$("input[type=checkbox]").prop("checked", false);
}
}
//์ด๋ฉ์ผ ์์ ์ฒดํฌ์ '(์ ํ) ๋ง์ผํ
์ ๋ณด ์์ ๋์' ๋์
function checkOptionalEmail() {
if ($("#sub_TermsOfService6").is(':checked')) {
$("input[id=sub_TermsOfService5]").prop("checked", true);
} else {
$("input[type=checkbox]").prop("checked", false);
}
}
//SNS ์์ ์ฒดํฌ์ '(์ ํ) ๋ง์ผํ
์ ๋ณด ์์ ๋์' ๋์
function checkOptionalSms() {
if ($("#sub_TermsOfService7").is(':checked')) {
$("input[id=sub_TermsOfService5]").prop("checked", true);
} else {
$("input[type=checkbox]").prop("checked", false);
}
}
๊ฒฐ๊ณผ) ์งํ์ค์ธ ๊ฐ์ธ ํ๋ก์ ํธ์ ์ด๋ฏธ์ง๋ฅผ ๊ฐ์ ธ์๋ค.
๊ธฐํ ์ฐธ๊ณ ๊ฐ๋ฅ
https://openlife.tistory.com/381
728x90
๋ฐ์ํ
'๐ปBootcamp Self-Study Revisionโจ > JavaScript, jQuery, Ajax' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Comments