摘要:
//从1970年开始的毫秒数然后截取10位变成 从1970年开始的秒数 function timest() { var tmp = Date.parse( new Date() ).toString(); tmp = tmp.substr(0,10); return tmp; } js 时间戳 var ts = Date.parse(new Date()); // ts 得... 阅读全文
摘要:
jade语法: #{xxx} //嵌入数据 p= xxx //嵌入数据 p #{xx} //嵌入数据 标签 html // 翻译为 div#test // div.bb-dd // div#bb.aa.cc //也可以的,类似emmet的语法 #content .item // p 啊噢! // 啊噢! p | foo bar baz ... 阅读全文
摘要:
js 设置url参数 js 移除url参数 阅读全文
摘要:
function addLoadEvent(func) { var old_onload = window.onload; if (typeof window.onload != 'function') { window.onload = func; } else{ old_onload(); func(); ... 阅读全文
摘要:
解决jquery与zepto等其它库冲突兼容的问题;(function ($) { }) (jQuery);;(function ($) { }) (Zepto); 在Bootstrap源码(具体请看《Bootstrap源码解析》)和其他jQuery插件经常看到如下的写法: +function ($ 阅读全文
摘要:
centos 查询是否安装apacherpm -qa httpd yum -y install httpd // 安装apache yum -y install php // 安装php php 5.3.3-46 yum -y install mysql // mysql (5.1.73) yum 阅读全文
摘要:
npm install -g http-server 以后可以在任何一个文件夹启动静态文件的访问通过http-server -a localhost -p 8000ctrl + c结束 http-server -h npm 仓库地址: https://www.npmjs.com/package/ht 阅读全文
摘要:
可以的:test(); // 直接function 方式声明的函数可以直接调用,后声明function test(){}aa(); //error var 方式声明的函数需先声明后调用var aa = function(){} 参考: 因为闭包! 所以也可以这样做 JavaScript doesn' 阅读全文
摘要:
js 执行时间function use_time(func) { var start = new Date().getTime(); console.log(start); func(); var end = new Date().getTime(); console.log(end); conso 阅读全文