Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- 자바스크립트
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- 따라하며 배우는 노드 리액트 기본 강의
- react오류
- Colaboratory 글자 깨짐
- node.js로 로그인하기
- spring-boot
- 모던자바스크립트
- Spring-Framework
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- googleColaboratory
- 인프런
- node.js 설치
- 모두의 파이썬
- 타자 게임 만들기
- 계산맞추기 게임
- intellij
- Python
- 웹 게임을 만들며 배우는 리액트
- 거북이 대포 게임
- DB Browser
- Do it 자바스크립트 + 제이쿼리 입문
- JS 개념
- Concurrently
- 리액트
- vs code 내 node
- react
- props
- 노드에 리액트 추가하기
Archives
- Today
- Total
프로그래밍 삽질 중
[javascript] input 체크박스(JS에서 만든 경우) 의 체크 항목 개수 구하기 본문
* 체크박스에 체크된 개수 세는 데 이 코드 사용 안 함 => https://ba-gotocode131.tistory.com/180
-> 체크박스에서 체크 항목 누르면 눌러진만큼 숫자가 변화해야 하는데 변하지 않음
-> 다른 방법 필요했음
-> 참고 : https://hianna.tistory.com/431
* HTML 내 element 요소가 있는 게 아니라 JS에서 element 요소를 만들고 추가함
(element 요소 수가 정해지지 않았음으로)
-> 따라서 작동되는 함수(getCountCheckbox())가 맨 위에 존재
* 변경된 코드(일부 코드만 넣음)
readWords();
function getCountCheckbox() { //input에 name을 넣어야 작동함
const query = 'input[name="countCheckbox"]:checked';
const selectedElements = document.querySelectorAll(query);
const selectedElementsCount = selectedElements.length;
const $checkedCountingAll = document.querySelector(`#word-counting-checked`);
$checkedCountingAll.innerHTML = selectedElementsCount;
}
async function readWords() {
const token = localStorage.getItem("w-access-token");
if (!token) {
return;
}
//단어장 조회 api
const config = {
method: "get",
url: url + "/words",
headers: { "w-access-token": token },
};
try {
const res = await axios(config);
const wordDataSet = res.data.result;
const easyArray = wordDataSet.easy;
const middleArray = wordDataSet.middle;
const advanceArray = wordDataSet.advance;
const easyCount = easyArray.length;
const middleCount = middleArray.length;
const advanceCount = advanceArray.length;
let checkedCount = 0;
//총 단어 개수
const allCount = easyCount + middleCount + advanceCount;
const $wordCountingAll = document.querySelector(`#word-counting-all`);
$wordCountingAll.innerHTML = allCount;
for (let section in wordDataSet) {
const $sectionUl = document.querySelector(`#${section} ul`);
const arrayForEachSection = wordDataSet[section];
let result = "";
for (let word of arrayForEachSection) {
let element = `
<input type="checkbox" class="word-done" ${
word.status === "C" ? "checked" : ""
} name="countCheckbox" onClick="getCountCheckbox()"/>`;
result += element;
}
$sectionUl.innerHTML = result;
console.log(result);
}
if (res.data.code !== 200) {
alert(res.data.message);
return false;
}
} catch (err) {
console.log(err);
}
}
'과거 프로그래밍 자료들 > 프로젝트' 카테고리의 다른 글
[영어단어장 version 1.0] react + mysql + 배포 완료 (0) | 2022.08.25 |
---|---|
[javascript] API로 받아온 정보 내 각각의 버튼에 함수 적용 (0) | 2022.08.11 |
[javascript] 객체의 값 반복문 사용, 반복되는 코드 함수로 통일 (0) | 2022.08.10 |
[javascript] 여러가지 input 작성, scroll, object 길이 파악하기 (0) | 2022.08.09 |
프로젝트 수정 8 - node.js로만 구성된 프로젝트에 리액트 추가(클라이언트 항목 : 인증하기) (0) | 2022.05.16 |