function teacher (name,age,type){ this.name = name; this.age = age; this.type = t...
function teacher (name,age,type){ this.name = name; this.age = age; this.type = t...
//员工方法 function Emp(post,wage){ this.post = post; this.wage = wage; } //部门方法 functi...
prototype === __proto__ Function.prototype === Function.__proto __proto__ === prototype...
/* 学完了JS OOP的课程,写了一个自己的迷你版的JQuery。 以下就是代码咯!! */ (function(){ //构建变量保存window. var _$ ...
/* 今天学习了JS的解析与执行过程,感觉好牛逼,记录下来,以便日后复习 */ //一阶段 var a = 5; function f(n){ alert(a); } f()...
这两天学习了JavaScript创建对象,老师留下的作业,感觉挺有意义的,于是保存下来! /* 1、创建一个学生类,里面有名字、年龄、性别属性 2、创建一个班级类,里面有名字...