摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta http-e 阅读全文
摘要:
javaScript有三种数据存储方式,分别是: sessionStorage localStorage cookier 相同点:都保存在浏览器端,同源的 不同点: ①传递方式不同 cookie数据始终在同源的http请求中携带(即使不需要),即cookie在浏览器和服务器间来回传递。 sessio 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>事件委托</title> </head> <body> <div style="width: 500px;height: 300px;border: 2px s 阅读全文
摘要:
processID = () => { const uuid = 'xxxxxxxx-xxxx-xxxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) { const r = Math.random() * 16 | 0, v = c == 'x' 阅读全文
摘要:
URL.createObjectURL() 静态方法会创建一个 DOMString,其中包含一个表示参数中给出的对象的URL。这个 URL 的生命周期和创建它的窗口中的 document 绑定。这个新的URL 对象表示指定的 File 对象或 Blob 对象。 URL.createObjectURL 阅读全文
摘要:
单纯的事件与获取 <input type="file" name="file" id="fileUpload"> <img id="preview" src=""/> jQuery $("#fileUpload").change(function () { console.log($("#fileU 阅读全文
摘要:
函数式编程 顾名思义就是不依赖外界影响而变化,只依靠自身的输入和输出来得到自己想要的 例子1 var arr = [{name:'123'}] function add(_arr) { var obj= {name: 'cst'} var newArr = [] for(var i = 0; i < 阅读全文
摘要:
strings.HasPrefix(s string, prefix string) bool:判断字符串s是否以prefix开头 strings.HasSuffix(s string, suffix string) bool:判断字符串s是否以suffix结尾。 strings.Index(s s 阅读全文
摘要:
import ( "bufio" "fmt" "os" "strings" ) func multi(str1, str2 string) (result string) { if len(str1) == 0 && len(str2) == 0 { result = "0" return } va 阅读全文
摘要:
1. FeHelper 格式化 官网:https://www.baidufe.com/fehelper Github:https://github.com/zxlie/FeHelper ##扩展功能: - JSON自动美化(页面自动检测并格式化) - JSON手动美化(粘贴文本、手动格式化) - J 阅读全文