Min's blog

I choose to see the beauties in the world.

导航

02 2017 档案

摘要:http 多媒体传输协议 HyperText Transfer Protocol 超文本传输协议 https Hyper Text Transfer Protocol over Secure Socket Layer 是以安全为目标的HTTP通道,简单讲是HTTP的安全版。即HTTP下加入SSL层, 阅读全文

posted @ 2017-02-28 16:12 Min77 阅读(299) 评论(0) 推荐(0)

摘要:1. 解析URL对象 字符串拆分,使用indexOf,split function queryUrl(URL) { let obj = {}; if (URL.indexOf('?') < 0) return obj; let arg = URL.split("?")[1].split("&"); 阅读全文

posted @ 2017-02-27 14:44 Min77 阅读(89) 评论(0) 推荐(0)