예제(알림창)
<div class="alert-box" id="alert">알림창임</div>
<button onclick="알림창열기()">버튼</button>
<button onclick="document.getElementById('alert').style.display = 'none'">닫기</button>
<script>
function 알림창열기(){
document.getElementById('alert').style.display = 'block';
}
document.get
</script>
1.조작할 html의 하단에 코드를 짜야합니다.
<script>
function 알림창열기(){
document.getElementById('alert').style.display = 'block';
}
document.get
</script>
<div class="alert-box" id="alert">알림창임</div>
<button onclick="알림창열기()">버튼</button>
<button onclick="document.getElementById('alert').style.display = 'none'">닫기</button>
이런 경우 동작이 안될수 있습니다.
2.셀럭터 오타
브라우저 개발자도구에서 확인 가능합니다.
Cannot read properties of null은 대부분 오타입니다.
~~ is not a function은 함수명이 잘못되었다는 뜻입니다.
에러메시지 그대로 구글링 해보자.