- 浏览: 10134 次
- 性别:
- 来自: 上海
最新评论
文章列表
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-sc ...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>DEMO</title>
<meta name="viewport" content="width=device-width,initial-scale ...
查看远程仓库:
git remote -v
添加远程仓库:
git remote add
删除远程仓库:
git remote rm
修改远程仓库:
git remote set-url --push
拉取远程仓库:
git pull
推送远程仓库:
git add -A
git commit -m test
git push
查看提交日志
git log
查看本地分支:
git branch
查看远程分支:
git branch -a
创建本地分支:
git branch [name] -- ...
<html>
<head>
<meta charset="UTF-8" />
<title>WEBP TEST</title>
<script charset="utf-8" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type=" ...
1、注册一个微信公众账号 地址:https://mp.weixin.qq.com/cgi-bin/loginpage?t=wxm2-login&lang=zh_CN
2、进入开发者中心,点击接口测试申请系统。在改页面添加:JS接口安全域名,测试地址跨域是ip,如果有端口号要带上端口号。
3、获取签名(关键)。这一步必须要和后台交互。
a、获取签名时前端要和后台进行一次交互,需要传一个参数url,这个参数是动态获取的当前页面的url出去#好和#号后面的部分。
b、后台在第二步的开发者中心拿到:AppId和AppSecret,然后根据前台传过去的url计算签名。详 ...
html5 Layout 模版
- 博客分类:
- HTML5
基于require, zepto, underscore, bootstrap
1、html代码
<div id="layMainStore" class="layout-content">
<i id="cancleX" class="cancle-x layoutCancle">╳</i>
<div class="layout-info">
<div id="layoutTxt" class=&qu ...
<div>
<span id="KSD">3</span>天
<span id="KSH">12</span>小时
<span id="KSM">39</span>分钟
<span id="KSS">25</span>秒
</div>
<script type="text/javascript">
func ...
CSS3 LOADING 加载
- 博客分类:
- HTML
1、html代码如下。
<div class="loading-mask"></div>
<div id="loadingBox" class="loading-content">
<div class="mask"></div>
<div class="x-loading-spinner">
<span class="x-loading-top&q ...
//one
var system ={win: false, mac: false, xll: false };
var p = navigator.platform;
system.win = p.indexOf("Win") == 0;
system.mac = p.indexOf("Mac") == 0;
system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);
if(!(system.win||system.mac||system.xll) ...
json与jsonp
- 博客分类:
- JS
This is json: {"Name": "brucecham", "Id" : 32, "Rank": 7}
$.ajax({
url: url,
dataType:'jsonp',
jsonp: "callback",
jsonpCallback:"callbackFn",
type:'get',
cache: false,
data: {},
success: function ...
webAPP的 meta属性(整理)
- 博客分类:
- HTML
webAPP的 meta属性
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no,target-densitydpi=device-dpi" />
<meta name="format-detection" content="telephone=no">
<meta name="appl ...
//********************************
//****Html5 管理本地数据库脚本****
//********************************
var LOCAL = window.LOCAL || {}, win = window;
LOCAL.LocalDB = function(options){
this.opts = $.extend({}, LOCAL.defaults, options);
console.log(this.opts);
}
LOCAL.LocalDB.prototype ...
/**
* @author: chenfeng_lian
* after included jQuery
*/
;var PAF = window.PAF || {};
PAF.plugins = PAF.plugins||{};
(function($){
PAF.plugins.ErrorMsg = function(options){
this.opts = $.extend(true, PAF.plugins.ErrorMsg.defaults, options);
this.mask = null;
this.$el = null;
...
匿名函数的简单写法:
(function(o, m) {
console.log(o);
console.log(m);//undefined
return arguments.callee;//再次执行该匿名函数
})('water')('down');
(function(){
console.log('invoked...')
})();
(function(){
console.log('invoked');
}());