zoukankan      html  css  js  c++  java
  • js prototype 添加属性对象

    在本例中,我们将展示如何使用 prototype 属性来向对象添加属性:

    <script type="text/javascript">
    
    function employee(name,job,born)
    {
    this.name=name;
    this.job=job;
    this.born=born;
    }
    
    var bill=new employee("Bill Gates","Engineer",1985);
    
    employee.prototype.salary=null;
    bill.salary=20000;
    
    document.write(bill.salary);
    
    </script>
  • 相关阅读:
    其他
    Win10
    Win10
    面向对象与设计模式
    Git
    Java
    Git
    Git
    Git
    一、I/O操作(File文件对象)
  • 原文地址:https://www.cnblogs.com/ouyangping/p/6880668.html
Copyright © 2011-2022 走看看