摘要: 同源指的是(协议+域名+端口)三者都要相同的url XmlHttpRequest同源策略:禁止使用XHR对象向不同源的服务器地址发起HTTP请求。对于一个普通域,例如https://www.baidu.com/s 中,协议名(https),域名(www.baidu.com),端口号(80),三者缺一 阅读全文
posted @ 2020-05-06 17:57 不邪 阅读(120) 评论(0) 推荐(0) 编辑
摘要: window安装redis 下载redis安装包 下载地址: https://github.com/MSOpenTech/redis/releases (图片来自菜鸟教程) 解压到安装目录 解压后文件如图 当前目录下 运行命令 redis-server.exe redis.windows.conf 阅读全文
posted @ 2020-04-26 14:50 不邪 阅读(131) 评论(0) 推荐(0) 编辑
摘要: iframe 页面跳转 阅读全文
posted @ 2020-04-03 15:07 不邪 阅读(265) 评论(0) 推荐(0) 编辑
摘要: element-ui 合并相邻的相同行 span-method 阅读全文
posted @ 2019-08-21 16:45 不邪 阅读(1309) 评论(0) 推荐(0) 编辑
摘要: function isHas(obj, key, str) { const keyArr = obj.split('.'); let i = 0; const is = (isObj, isKey) => isObj ? is(isObj[isKey], keyArr[++i]) : str; co 阅读全文
posted @ 2019-07-22 09:07 不邪 阅读(796) 评论(0) 推荐(0) 编辑
摘要: 克隆远程分支到本地 git clone <https://github.com/cqzyl/methods.js.git> 进入master分支 git checkout master 以master为源创建本地分支test git checkout -b test 将本地test分支作为远程tes 阅读全文
posted @ 2019-06-18 16:28 不邪 阅读(212) 评论(0) 推荐(0) 编辑
摘要: svg用做背景图的几种方式 1. 直接使用 background: url('data:image/svg+xml;charset=utf-8,<svg width="10" height="10" viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/ 阅读全文
posted @ 2018-08-21 14:40 不邪 阅读(4370) 评论(0) 推荐(0) 编辑
摘要: 按位操作符(Bitwise operators) 将其操作数(operands)当作32位的比特序列(由0和1组成),而不是十进制、十六进制或八进制数值。例如,十进制数9,用二进制表示则为1001。按位操作符操作数字的二进制形式,但是返回值依然是标准的JavaScript数值。 a|1 把这个数强行 阅读全文
posted @ 2018-07-25 14:27 不邪 阅读(3181) 评论(0) 推荐(0) 编辑
摘要: 位运算版本的交换两数 if(a !== b){ a = a^b; b = a^b; a = a^b; } console.log(a, b) 阅读全文
posted @ 2018-07-25 12:02 不邪 阅读(139) 评论(0) 推荐(0) 编辑
摘要: str.replace(/[^0-9]/ig, '') 阅读全文
posted @ 2018-06-21 16:35 不邪 阅读(220) 评论(0) 推荐(0) 编辑