摘要: javaScript有三种数据存储方式,分别是: sessionStorage localStorage cookier 相同点:都保存在浏览器端,同源的 不同点: ①传递方式不同 cookie数据始终在同源的http请求中携带(即使不需要),即cookie在浏览器和服务器间来回传递。 sessio 阅读全文
posted @ 2019-12-13 14:53 林中有风 阅读(494) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>事件委托</title> </head> <body> <div style="width: 500px;height: 300px;border: 2px s 阅读全文
posted @ 2019-12-13 14:30 林中有风 阅读(547) 评论(0) 推荐(0) 编辑
摘要: processID = () => { const uuid = 'xxxxxxxx-xxxx-xxxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { const r = Math.random() * 16 | 0, v = c == 'x' 阅读全文
posted @ 2019-12-13 14:11 林中有风 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: URL.createObjectURL() 静态方法会创建一个 DOMString,其中包含一个表示参数中给出的对象的URL。这个 URL 的生命周期和创建它的窗口中的 document 绑定。这个新的URL 对象表示指定的 File 对象或 Blob 对象。 URL.createObjectURL 阅读全文
posted @ 2019-12-13 14:04 林中有风 阅读(5323) 评论(0) 推荐(0) 编辑
摘要: 单纯的事件与获取 <input type="file" name="file" id="fileUpload"> <img id="preview" src=""/> jQuery $("#fileUpload").change(function () { console.log($("#fileU 阅读全文
posted @ 2019-12-13 13:55 林中有风 阅读(1590) 评论(0) 推荐(0) 编辑
摘要: 函数式编程 顾名思义就是不依赖外界影响而变化,只依靠自身的输入和输出来得到自己想要的 例子1 var arr = [{name:'123'}] function add(_arr) { var obj= {name: 'cst'} var newArr = [] for(var i = 0; i < 阅读全文
posted @ 2019-12-13 10:20 林中有风 阅读(95) 评论(0) 推荐(0) 编辑