]
Two types of JavaScript object-oriented Writing methods and differences
http://www.jb51.net/article/13211.htm
JavaScript Object-Oriented Introduction to Condensed Edition
http://www.jb51 .net/article/17541.htm<script>
function user()
{
this.age=21;
this.name="zhangsan";
this.say=function(){
alert("hello");
}
}
var u = new user();
alert(u["age"]);
alert(u.name);
u.say();
</script>
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn