美文网首页
js 封装结构示例

js 封装结构示例

作者: Hi小胡 | 来源:发表于2022-03-02 15:33 被阅读0次

示例1:

class Student {

    static type = "person";
    name = "";

    constructor(name) {
        console.log("start")
        this.name = name;
    }

    show() {
        console.log("show")
    }
}

var stu = new Student("hester");
console.log(stu.name)
console.log(Student.type)
stu.show();

示例2:

var Student = (function () {
    function Student(name) {
        console.log("start")
        this.name = name;
    }
    Student.type = "person";
    Student.prototype.show = function () {
        console.log("show");
    };
    return Student;
}());

var stu = new Student("hester");
console.log(stu.name)
console.log(Student.type)
stu.show();

相关文章

  • js 封装结构示例

    示例1: 示例2:

  • 封装canvas矩形

    用面向对象的方法封装方法 暂时只有 描边矩形+填充矩形 调用示例:HTML结构: js:

  • 2018-03-09

    小程序网络请求封装示例 fetch.js bdidu.js douban.js wechat.js util.js

  • 读取文件编码格式mime

    代码示例之原生js 代码示例之vue 插件安装 封装代码 应用封装代码 在线获取文件编码的地址:https://g...

  • day5-js基础语法

    1.js基础语法 代码示例 2.变量 代码示例 3.运算符 代码示例 4.分支结构 代码示例 5.循环结构 代码示...

  • Node 创建多级目录

    测试示例目录结构 index.js package.json

  • tab栏封装

    通过原生js , 封装tab栏切换效果 结构样式略; js代码如下:

  • log4js的使用

    前言 实现进程层面文件日志的写入 封装的log4js日志类 示例demo

  • Vue.js 插件封装详解

    详情请点击下方大佬的链接 Vue.js 插件封装详解(示例:vue-toast)

  • 管理表单示例

    管理表单示例 目录结构: index.html: index.js: clusterDetails.html:

网友评论

      本文标题:js 封装结构示例

      本文链接:https://www.haomeiwen.com/subject/wnzsrrtx.html