javascript function
2019. 11. 28. 11:47
Programing/Web Programming
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<script>
function Human(strName, strAge,strJob){
this.name = strName;
this.age = strAge;
this.job = strJob;
}
mHuman = new Human("홍길동",20,"프로그래머");
document.write("이름 : "+mHuman.name+"<br>나이 : "+mHuman.age+"<br> 직업 : "+mHuman.job+"<br>");
mHuman.tel = "010-123-1231";
mHuman.showInfo = function(){
alert("추가된 속성인 휴대폰번호는 "+this.tel+"입니다.");
}
mHuman.showInfo();
document.write("휴대폰번호 : "+mHuman.tel);
</script>
</body>
</html>
'Programing > Web Programming' 카테고리의 다른 글
네트워크응용 Spring 업로드 웹사이트 (0) | 2020.04.20 |
---|---|
javascript 배열 계산 출력 (0) | 2019.11.21 |
JavaScript prompt로 값 받아 계산하는 함수 (0) | 2019.11.21 |
PHP에서 외부 주소 JSON 언파싱 (0) | 2019.11.17 |
CSS 애니메이션 기울기, 비율, 이동 (0) | 2019.11.07 |