Javascript 학습 --- 내부 대상

1. Object 개체
  개체 만 들 기:
     obj=new Object([value])
  Object 대상 의 속성:
     · prototype 속성: 이 속성 은 대상 유형의 원형 호출 을 되 돌려 줍 니 다.
       이 속성 을 대상 으로 추가 하 는 방법 을 사용 할 수 있 습 니 다. 예 를 들 어 Array 대상 에 최대 치 를 구 하 는 방법 을 추가 할 수 있 습 니 다. 다음 과 같 습 니 다.
function array_max(){
		var i=0,max=this[0];
		for(i=1;i<this.length;i++){
			if(max<this[i])max=this[i];
		}
		return max;
	}
function test(){
	Array.prototype.max=array_max;// Array           max()
	var obj=new Array(1,2,3,4,5,6);
	document.write("max:"+obj.max());//    
}

       html 파일 에서 의 호출 은 다음 과 같 습 니 다.
<head>
<script type="text/javascript" src="test.js"></script>
</head>
<body>
<p><input type="button" onClick="test()" value="button"></p>
</body>

      ・ constructor 속성: 이 속성 은 생 성 대상 의 함 수 를 표시 합 니 다.다음 과 같다.
//  
var x=new String("hello");
if(x==String){
  document.write(x);
}
//  
function test(){ 
}
var y=new test;
if(y.constructor==test){
  document.write("hello");
}

  Object 대상 의 방법:
    ・ toLocaleString () 방법: 날 짜 를 되 돌려 줍 니 다.대상 은 Date 대상 이 어야 합 니 다.
var date=new Date();
document.write(date.toLocaleString());

    ・ toString () 방법
    / value of () 방법: 대상 의 값 을 얻는다

좋은 웹페이지 즐겨찾기