云开
Suivre

Après avoir suivi, vous pouvez suivre ses informations dynamiques en temps opportun

Notes de cours
  • Cours dans la section correspondante:Orienté objet et prototype[1]

    var box=new Object(); box.name='Lee'; box.age=100; box.run=function () { return this.name+this.age+'运行中...'; } alert(box.run()); var box1=box; box1.name='jack'; box1.age=200; box1.run=function () { return this.name+this.age+'运行中...'; } alert(box1.run()); //ps:顺序

    2020-04-290个赞