function 생성자 함수명(매개변수1,매개변수2)
앞에서 언급했던 매개 변수..그녀석들이 다시 나왔다.. |
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko" lang="ko"> |
|
|
|
<head> |
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" /> |
|
|
|
<title> 함수 객체 </title> |
|
|
|
<script type="text/javascript"> |
|
//<!CDATA[ |
|
function computer(cpu,ram,hdd/*인자값*/){ |
|
this.cpu=cpu; //this.속성=매개변수 ; mycomputer=this |
|
this.ram=ram; |
|
this.hdd=hdd; |
|
} |
|
function noramlstory(design,play,work/*인자값*/){ |
|
this.design=design; //this.속성=매개변수 ; mycomputer=this |
|
this.play=play; |
|
this.work=work; |
|
} |
|
//]]1]]]]> |
|
</script> |
|
|
|
</head> |
|
|
|
|
|
<body> |
|
<script type="text/javascript"> |
|
mycomputer=new computer("p4","4G","200G"); // mycomputer=this |
|
yourcomputer=new computer("p2","1G","100G"); |
|
document.write("<h3>your computer</h3>"); |
|
document.write("cpu :" + yourcomputer.cpu + " | "); |
|
document.write("ram :" + yourcomputer.ram + " | "); |
|
document.write("hdd :" + yourcomputer.hdd + " | "); |
|
|
|
|
|
mmm=new noramlstory("p4","4G","200G"); |
|
document.write("<h3> noramlstory</h3>"); |
|
document.write("design :" + mmm.design + " | "); |
|
document.write("play:" + mmm.play + " | "); |
|
document.write("work :" +mmm.work + " | "); |
|
</script> |
|
|
|
</body> |
|
|
|
</html> |
|
|
'새로워지기 > 서른의 생활코딩' 카테고리의 다른 글
샘플소스3) javascript 기본 문서구조 ( 숫자 객체 ) (0) | 2011.04.10 |
---|---|
샘플소스3) javascript 기본 문서구조 ( 숫자 객체 ) (0) | 2011.04.10 |
샘플소스3) javascript 기본 문서구조 ( 날짜 객체 _ 응용 ) (0) | 2011.04.10 |
샘플소스3) javascript 기본 문서구조 ( 날짜 객체 ) (0) | 2011.04.10 |
샘플소스3) javascript 기본 문서구조 ( 배열 2 ) (0) | 2011.04.10 |
댓글