요소의 값을 확인하려고 시도하지만 클래스를 검사 할 때 undefined
을 반환합니다.요소 값 가져 오기
HTML :
<div class='cube' value='test' onclick='checkCube(this)'></div>
자바 스크립트 :
function checkCube(cube) { // - there's either one of those lines, not both)
var check = cube.value; //This is not working,
var check = cube.className; //This is.
console.log(check);
}
나는 빈 엘리먼트가되기를 원하기 때문에 그것에는 아무 텍스트도 포함되지 않을 것이다. 이미 해결책을 얻었습니다 .372, 어쨌든 고맙겠습니다. D – Omer