摘要: <!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-07-15 17:12 13522679763-任国强 阅读(21) 评论(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-07-15 15:39 13522679763-任国强 阅读(25) 评论(0) 推荐(0)
摘要: // jquery闭包应用 let params1 = typeof window !== undefined ? window : this; let params2 = function(window,noGlobal){ // 浏览器环境 window-> window noGlobal->u 阅读全文
posted @ 2021-07-15 14:11 13522679763-任国强 阅读(37) 评论(0) 推荐(0)
摘要: /** * compose 组合函数 * */ const add1 = (x) => x + 1; const mul3 = (x) => x * 3; const div2 = (x) => x / 2; // funs:按照管道的顺序依次存储着要处理的函数 const compose = (. 阅读全文
posted @ 2021-07-15 11:16 13522679763-任国强 阅读(80) 评论(0) 推荐(0)