// Define a class like thisfunction Person(name, gender){ // Add object properties like this this.name = name; this.gender = gender;}// Add methods like this. All Person objects will be able to invoke thisPerson.prototype.speak = function(){ alert("Howdy, my name is" + this.name);};// Instantiate new objects with 'new'var person = new Person("Bob", "M");// Invoke methods like thisperson.speak(); // alerts "Howdy, my name is Bob"
现在,真正的答案要复杂得多。例如,Javascript中没有类。Javascript使用
prototype基于的继承方案。
此外,还有许多流行的Javascript库,它们具有自己的样式,它们近似于Javascript中的类功能。您将至少要签出Prototype和jQuery。
确定其中哪一个是“最佳”是在Stack
Overflow上发起一场神圣战争的好方法。如果您正着手进行一个较大的Javascript大型项目,那么绝对值得学习流行的库并按自己的方式去做。我是一个原型人,但是StackOverflow似乎倾向于jQuery。
至于只有“一种方法”,而没有对外部库的任何依赖,我写的方式就差不多了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)