1. 首页
  2. 数据库
  3. 其它
  4. JavaScript构建自己的对象示例

JavaScript构建自己的对象示例

上传者: 2021-01-16 11:44:08上传 PDF文件 35.88KB 热度 7次
本文实例讲述了JavaScript构建自己的对象。分享给大家供大家参考,具体如下: [removed] //构建一个CustomerBooking类 //构造函数 function CustomerBooking(bookingId,customerName,film,showDate){ this.bookingId = bookingId; this.customerName = customerName; this.film = film; this.showDate =showDate; } //getBookingId方法
用户评论