JavaScript面向对象
Posted wanna-be-ok
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript面向对象相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> </head> <body> <script> (function () { var n = "me"; function people(name){ this.oo=name; } people.prototype.say= function () { alert("poe-hello"+this.oo+n) }; window.people=people; return n; }()); (function () { function student(name){ this.oo=name; } student.prototype=new people(); var sups=student.prototype.say; student.prototype.say= function () { sups.call(this); alert("stu-hello"+this.oo); } window.student=student; }()); var s=new student("ii"); s.say(); </script> </body> </html>
以上是关于JavaScript面向对象的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段12——JavaScript的Promise对象
VSCode自定义代码片段12——JavaScript的Promise对象