上一页 1 ··· 7 8 9 10 11 12 13 下一页
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-02-15 14:05 starlog 阅读(29) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-02-15 14:01 starlog 阅读(33) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-02-15 13:35 starlog 阅读(45) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2021-02-15 11:43 starlog 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 完整版: function deepCopy(obj, cache = new WeakMap()) { // 支持值类型 // 与值类型相对的是对象类型,对象是指内存中的可以被标识符引用的一块区域 if (!obj instanceof Object) return obj; // 防止循环引用 阅读全文
posted @ 2021-02-14 17:31 starlog 阅读(136) 评论(0) 推荐(0) 编辑
摘要: <html> <head></head> <body></body> <script> // foo是一个函数 function foo(name, age) { console.log(this); console.log(`姓名:${name},年龄:${age}`); } // obj是一个对 阅读全文
posted @ 2021-02-14 00:47 starlog 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 有一个对象: let obj = {name: 'Jack', age: 50}; ES6字符串拼接: let str_es6 = `姓名是:${obj.name}, 年龄是:${obj.age}`;// 打印结果:// 姓名是:Jack, 年龄是:50 ES5字符串拼接: let str_es5 阅读全文
posted @ 2021-02-13 23:40 starlog 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 生成根据长度截取的新字符串:substr /** * @param start 子字符串的起始下标 * @param count 子字符串的长度 * @return 新的字符串 */ String.substr(start, count) // 例子 let str = 'what are you 阅读全文
posted @ 2021-02-13 12:53 starlog 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 对数组的每个元素都执行一次回调函数:forEach 通过指定函数处理数组的每个元素,并返回处理后的数组:map 检测数值元素,并返回符合条件所有元素的数组:filter 将数组元素计算为一个值(从左到右):reduce 返回符合条件的数组元素:find 检测数值元素的每个元素是否都符合条件:ever 阅读全文
posted @ 2021-02-10 11:34 starlog 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 双飞翼布局: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta 阅读全文
posted @ 2021-02-10 11:22 starlog 阅读(71) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 下一页