Notice
Recent Posts
Recent Comments
ยซ   2024/11   ยป
์ผ ์›” ํ™” ์ˆ˜ ๋ชฉ ๊ธˆ ํ† 
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
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:16

230329

๊ธฐ๋ณธํ‹€์€ ์•„๋ž˜์™€ ๊ฐ™๊ณ 
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);
    }
}

๊ฒฐ๊ณผ) ์ง„ํ–‰์ค‘์ธ ๊ฐœ์ธ ํ”„๋กœ์ ํŠธ์˜ ์ด๋ฏธ์ง€๋ฅผ ๊ฐ€์ ธ์™”๋‹ค.

ํ•„์ˆ˜ ์•ฝ๊ด€ ์ „์ฒด ๋™์˜ ๋ˆŒ๋ €์„ ๋•Œ
์„ ํƒ ์•ฝ๊ด€ ์ „์ฒด ๋™์˜ ๋ˆŒ๋ €์„ ๋•Œ
์ด๋ฉ”์ผ ๋ˆŒ๋ €์„ ๋•Œ
SMS ๋ˆŒ๋ €์„ ๋•Œ


๊ธฐํƒ€ ์ฐธ๊ณ  ๊ฐ€๋Šฅ

https://openlife.tistory.com/381


728x90
๋ฐ˜์‘ํ˜•
Comments