- 浏览: 4589 次
- 性别:
- 来自: 常州
最新评论
文章列表
function download(link) {
var $a = $("<a></a>").attr("href", link).attr("download", "");
$a[0].click();
}
var Event = (function() {
var clientList = {};
var listen,
trigger,
remove;
listen = function(key, fn) {
if (!clientList[key]) {
clientList[key] = [];
}
clientList[key].push(fn);
};
trigger = function() {
va ...
Git中从远程的分支获取最新的版本到本地有这样2个命令:1. git fetch:相当于是从远程获取最新版本到本地,不会自动merge git fetch origin mastergit log -p master..origin/mastergit merge origin
npm install hexo-cli -g
hexo init 生成目录,文件等
(sudo) hexo g(generate) 生成静态文件
(sudo) hexo s(server) 用浏览器访问http://localhost:4000/
=============================================
_config.yml
deploy: type: git repository: github项目地址 branch: master
hexo g
hexo d(deploy) 部署到 ...
for (var i = 0; i < 3; i++) {
setTimeout(function() {
console.log(i);
}, 0);
console.log(i);
}
结果是:0 1 2 3 3 3 很多公司面试都爱出这道题,此题考察的知识点还是蛮多的。 为了防止初学者栽在此问题上,此文稍微分析一下。 都考察了那些知识点呢? 异步、作用域、闭包,你没听错,是闭包。 我们来简化此题:
setTimeout(function() {
console.log(1);
}, 0);
console.log( ...
图片上传 h5预览图片
- 博客分类:
- js
<!doctype html><html><head><meta charset="utf-8"><title>测试页面</title></head><body><p>第一种:</p><input id="test" type="file"><br><br><br><br><br><p>第二种:</p><input ...
<!doctype html><html><head><meta charset="utf-8"><title>xj</title><style>body, div, ul, ol, li { margin: 0; padding: 0;}ol, ul { list-style:none;}a { text-decoration:none;}.wrap { background: url(http://pal6images.roogames.com/xianji ...
nginx特点:轻量级、高性能、稳定、配置简单、资源占用少,并发能力强等。
下载地址:
http://nginx.org
解压到某目录命名为nginx,默认使用80端口。
启动:切换至nginx目录下输入start nginx即可。或者直接运行nginx.exe。
如果出现一闪而过并且进程中nginx没有启动,那么可能是端口被占用。
可以修改配置文件nginx.conf , 将监听端口改为其它未被占用的。
nginx常用命令
nginx -s stop 强制关闭 nginx -s quit 安全关闭 nginx -s reload 改变配置文件的时候,重启nginx工作进程 ...