로그인하기
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
var id="jingnew";
var pw="1215"
var user_id=prompt("아이디입력","");
var user_pw=prompt("비번");
if(user_id==id&&user_pw==pw){alert("로그인돼따");}
else if(user_pw!=pw){alert("비번이틀려씀"); location.reload();}
else if(user_id!=id){alert("없는아이디임!");}
</script>
</head>
<body>
</body>
</html>
적정체중표시하기
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script>
var name=prompt("이름?","");var height=prompt("키?","");var weight=prompt("체중?","");
var result= height-100*0.9;
var min = result-5
var max=result+5
if(weight<min){alert("미달");location.reload();}
else if(weight>max){alert("비만");location.reload();}
else{alert(name+"님의 체중은 정상입니다.");}
</script>
</head>
<body>
</body>
</html>
var += 숫자 → var=var+숫자
++은 1씩더함
--는 1씩뺌
and=&&
:ex) if(x>=3&&x<6)삼이상 육미만
or = ||
prompt():질의
confirm : 확인 예아니오
alert 경고창
location.reload(); 새로고침
if(result)
result란는 변수에서 참값을 반환,유짖
존노잼이지만 안하면 까먹으니까 적어는놓는다..힝
'공부하는 징뉴 > 퍼블' 카테고리의 다른 글
20190114_click (0) | 2019.01.14 |
---|---|
20190114_jquery-css (0) | 2019.01.14 |
array (0) | 2019.01.11 |
시계 (0) | 2019.01.11 |
자바스크립트..몇일차인지모르게따..math 함수! (0) | 2019.01.11 |