일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- https://tecoble.techcourse.co.kr/post/2021-08-07-logback-tutorial/
- https://minkwon4.tistory.com/161
- 국회의원 & 높으신 분들 어록
Archives
- Today
- Total
OPEN between Secret
Java script 에서 객체생성? 본문
반응형
원래 instance 급은 this.x 이런식인데
자바 스크립트에서는 this.x 로 선언을 하면 에러가 난다.
그냥
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script type="text/javascript">
<!--
//객체리터럴
var pobj={
x:100,
y:200,
myShape:'Player',
display:function(){
window.alert(this.myShape+":" + this.x + ","+this.y);
},
moveLeft:function(){
this.x = this.x-1;
this.display()
},
moveRight:function(){
this.x = this.x+1;
this.display()
}
};
//객체사용
pobj.display();
pobj.moveLeft();
pobj.moveRight();
//-->
</script>
</head>
<body>
</body>
</html>
---------------------------------------------------- 이건 잘 모르겄음
반응형
'java > Java script & jQuery' 카테고리의 다른 글
java script (0) | 2014.07.28 |
---|---|
Dom Level2 EventModel (0) | 2014.07.28 |
여러 객체를 하나의 이벤트로 처리하는방법?? (0) | 2014.07.28 |
Inner Function (0) | 2014.07.28 |
Java Script 에서 Method's overloading 하기 (0) | 2014.07.28 |