From: JavaEye.com
JavaScript의 객체 카테고리 정의에 주의하고, 함수를 사용하여 객체 카테고리를 정의하고, new 연산자를 사용하여 객체를 초기화합니다.
function Person(name, age) {
this.name = 이름;
this.age = age;
this.toString = function() {
document.writeln("[name]:" this.name "
" "[age ]:" this .age);
}
}
완전한 간단한 HTML
JavaScript <script> <BR>function Person(name, age) { <BR> this.name = name; <BR> this.age = age; <BR> this.toString = function() { <BR> document.writeln("[name]:"+this.name+"<br>"+"[age]:"+this.age); <BR> } <BR>} <BR></script><script> <BR> var person = new Person(); <BR> person.name="robbin"; <BR> person.age=30; <BR> person.toString(); <BR></script>