반응형
안녕하세요
이번엔 알게 된 element 요소가 있는 지 검사하는 방법을 알려드리겠습니다.
<html>
<body>
<input type="text" id="txt1"></input>
<script>
var txt1Check = !!document.getElementById("txt1");
var txt2Check = !!document.getElementById("txt2");
console.log("txt1Check : "+txt1Check);
console.log("txt2Check : "+txt2Check);
</script>
</body>
</html>
위 소스와 같이 document.getElementById() 앞에 !!(느낌표 2개)를 붙여주면
해당 요소가 있을 경우 true 반환, 없을 경우 false를 반환합니다.
출력결과
txt1Check : true txt2Check : false |
반응형
'FE > Javascript' 카테고리의 다른 글
[Javascipt] 변수 선언 방식 (var, let, const) (0) | 2022.05.12 |
---|---|
[Javascript] A window.confirm() dialog generated by this page was suppressed because this page is not the active tab of the front window 해결방법 (0) | 2021.10.26 |
[Javascript] Select Option Value속성 말고 다른 속성 사용하기 (0) | 2021.06.19 |
[오류 해결]SCRIPT87:잘못된 인수입니다. (0) | 2021.05.14 |
[Javascript] 팝업 열기 및 크기 조절 (0) | 2021.05.13 |