Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | import { useState } from 'react';
export default function FormCheckMulti() {
// State 초기화
const [form, setForm] = useState({
animal: ['dog', 'hamster']
});
// 체크박스 변경 시 입력값 State에 반영
const handleFormMulti = e => {
const fa = form.animal;
// 체크 시 배열에 값 추가, 체크 해제 시 삭제
if (e.target.checked) {
fa.push(e.target.value);
} else {
fa.splice(fa.indexOf(e.target.value), 1);
}
// 편집된 배열을 State에 반영
setForm({
...form,
[e.target.name]: fa
});
};
// [보내기] 버튼 클릭 시 입력값 로그 출력
const show = () => {
console.log(`좋아하는 동물:${form.animal}`);
};
// 개별 체크박스에 체크 여부 반영
return (
<form>
<fieldset>
<legend>좋아하는 동물:</legend>
<label htmlFor="animal_dog">개</label>
<input id="animal_dog" name="animal"
type="checkbox" value="dog"
checked={form.animal.includes('dog')}
onChange={handleFormMulti} /><br />
<label htmlFor="animal_cat">고양이</label>
<input id="animal_cat" name="animal"
type="checkbox" value="cat"
checked={form.animal.includes('cat')}
onChange={handleFormMulti} /><br />
<label htmlFor="animal_hamster">햄스터</label>
<input id="animal_hamster" name="animal"
type="checkbox" value="hamster"
checked={form.animal.includes('hamster')}
onChange={handleFormMulti} /><br />
<label htmlFor="animal_rabbit">토끼</label>
<input id="animal_rabbit" name="animal"
type="checkbox" value="rabbit"
checked={form.animal.includes('rabbit')}
onChange={handleFormMulti} /><br />
</fieldset>
<button type="button" onClick={show}>보내기</button>
</form>
);
}
|