摘要:
a(); function a() { alert('1') } var a = function() { alert('2') } a(); // 先弹出 alert(1) ,再弹出alert(2) a(); var a = function() { alert('2') } function a 阅读全文
摘要:
https://www.cnblogs.com/phpstudy2015-6/p/6810130.html 阅读全文
摘要:
https://segmentfault.com/a/1190000013532882 阅读全文
摘要:
地址 https://publicsuffix.org/ https://publicsuffix.org/learn/ 阅读全文
摘要:
localStorage 和 sessionStorage 的区别主要在于其生命周期 localStorage 相同的协议,主机名,端口,可以读取到localStorage数据 sessionStorage: 相同的协议,主机名,端口,窗口(浏览器的标签页是否是同一个) 阅读全文
摘要:
git init git status git commit -m'info' git commit --amend git push git pull git merge git reset --soft commitid git reflag git rebase git pull --reba 阅读全文
摘要:
缓存 add_header Cache-Control no-cache; 跨域 add_header Access-Control-Allow-Origin *; 阅读全文
摘要:
不打开控制台,页面无展示,打开页面才能执行,因为打开控制台才有console https://blog.csdn.net/weixin_36212732/article/details/115975604 阅读全文
摘要:
ie8 、ie9跨域使用XDomainRequest XDomainRequest 是在 Internet Explorer 8 和 9 中,使用 HTTP 访问控制(CORS)的实现。它在 Internet Explorer 10 中已被删除,应改为使用 XMLHttpRequest 以及配置相应 阅读全文
摘要:
将js文件夹及其中的内容移动到dist目录下,执行命令之后dist/js/... mv ./js ./dist 将js下的文件都移动到dist目录下(比如js下面有1.js), 命令执行完之后为dist/1.js mv ./js/* ./dist 阅读全文