摘要: JavaScript转义 1. encodeURI()1.1 注意 2. decodeURI()3. encodeURIComponent()3.1 `encodeURIComponent()` 和 `encodeURI` 比较3.2 注意 4. decodeURIComponent()5. URI 阅读全文
posted @ 2021-02-26 07:07 f_carey 阅读(22) 评论(0) 推荐(0) 编辑
摘要: javascript面向对象 1. 对象与属性1.1 枚举一个对象的所有属性 2. 创建新对象2.1 对象初始化器创建对象2.2 使用构造函数创建对象2.3 使用 Object.create 方法创建对象2.4 继承2.5 定义方法2.6 通过 `this` 引用对象 1. 对象与属性 一个 jav 阅读全文
posted @ 2021-02-26 07:01 f_carey 阅读(2) 评论(0) 推荐(0) 编辑
摘要: JavaScript Date时间处理 1. 语法1.1 参数 2. 方法2.1 Getter方法 2.2 实例2.3 计算经过时间 1. 语法 new Date(); new Date(value); new Date(dateString); new Date(year, monthIndex 阅读全文
posted @ 2021-02-26 07:00 f_carey 阅读(9) 评论(0) 推荐(0) 编辑