useRef() Hook을 사용하여 React Js에서 버튼이 있는 모든 확인란을 어떻게 선택/선택 취소합니까?
이 게시물에서는 모든 확인란을 선택/선택 취소하는 방법에 대해 알아봅니다.
useRef() 반응 후크 사용.
1>App.js
import logo from './logo.svg';
import './App.css';
import { useRef } from 'react';
function App() {
const ref = useRef([]);
const checkboxvalue = (e) => {
console.log(e.target.value)
}
const Unchecked = () => {
console.log(ref.current.length)
for (let i = 0; i < ref.current.length; i++) {
ref.current[i].checked = false;
}
}
const Checked = () => {
console.log(ref.current.length)
for (let i = 0; i < ref.current.length; i++) {
ref.current[i].checked = true;
}
}
return (
<>
<div style={{ width: '50%', backgroundColor: '#f7f4f3', marginLeft: '150px', marginTop: '100px', padding:'50px 0px 100px 50px' }}>
<input ref={(element) => { ref.current[0] = element }} value='12' type='checkBox' onChange={checkboxvalue } /> <br />
<input ref={(element) => { ref.current[1] = element }} value='123' type='checkBox' onChange={checkboxvalue } /> <br />
<input ref={(element) => { ref.current[2] = element }} value='1' type='checkBox' onChange={ checkboxvalue } /> <br />
<input ref={(element) => { ref.current[3] = element }} value='1234' type='checkBox' onChange={checkboxvalue } /> <br />
<button style={{ padding: '5px', backgroundColor: 'green', border: 'none', margin:'5px 5px 5px 5px' }}onClick={Unchecked}>Unchecked</button>
<button style={{ padding: '5px', backgroundColor: 'red', border: 'none', margin: '5px 5px 5px 5px' }} onClick={Checked}>Checked</button>
</div>
</>
);
}
export default App;
잘했어요! 이제 useRef() React Hook을 사용하여 완료했습니다!
좋아요나 댓글로 사랑을 전해주세요♥
참조 w3schools
Download Source Code from GitHub Repository
Reference
이 문제에 관하여(useRef() Hook을 사용하여 React Js에서 버튼이 있는 모든 확인란을 어떻게 선택/선택 취소합니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/radhe65gupta/how-do-i-checkuncheck-all-checkboxes-with-a-button-in-react-js-using-useref-hook--4p86텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)