### 알람 설정 alert
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="button" value="confirm" onclick="func_confirm()" />
<script>
function func_confirm(){
if(confirm('ok?')){
alert('ok');
} else {
alert('cancel');
}
}
</script>
</body>
이것은 알람 선택을 할 수 있는 방법이다
### 로그인 설정 prompt
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="button" value="prompt" onclick="func_prompt()" />
<script>
function func_prompt(){
if(prompt('id') === 'egoing'){
alert('welcome');
} else {
alert('fail');
}
}
</script>
</body>
로그인을 하는 방법의 기초이다
문자를 비교하여 맞는지 틀리는지 알려준다
'HTML 참고서 > HTML 생활코딩 Youtube' 카테고리의 다른 글
5.JavaScript Location (0) | 2020.04.12 |
---|---|
4.Javascript 객체 (0) | 2020.04.10 |
2. Java Script 구조에 대하여(HTML) (0) | 2020.04.10 |
1. HTML CSS 자바스크립트 로드 시키기 (0) | 2020.04.10 |
선택만들기 (0) | 2020.03.12 |