实例:
<script type="text/javascript">
function person(name,sex){
this.name = name;
this.sex = sex;
this.print = print;
}
function print(){
var str = "name = " + this.name + ",sex = " + this.sex;
document.write(str+"<br>");
}
var person = new person("wlh","man");
person.print();
</script>
结果:
name = wlh,sex = man