1625 - 1625.me

General Information:

Latest News:

原型使用 23 Nov 2012 | 08:41 am

function Foo() { this.value = 42; } Foo.prototype = { method: function() {} }; function Bar() {} // 设置Bar的prototype属性为Foo的实例对象 Bar.prototype = new Foo(); Bar.prototype.foo = 'Hello World'; // 修正Bar.pr...

自执行匿名函数和立即执行的函数表达式区别 23 Nov 2012 | 08:01 am

// 这是一个自执行的函数,函数内部执行自身,递归 function foo() { foo(); } // 这是一个自执行的匿名函数,因为没有标示名称 // 必须使用arguments.callee属性来执行自己 var foo = function () { arguments.callee(); }; // 这可能也是一个自执行的匿名函数,仅仅是foo标示名称引用它自身 // 如果你将foo...

.gitignore不起作用 31 Oct 2012 | 06:12 am

git rm –cached filename git rm -r –cached folder/*

git push 多个仓库 26 Oct 2012 | 06:07 am

1、修改配置文件:.git/config [remote "origin"] fetch = +refs/heads/*:refs/remotes/origin/* url = e:/dropbox/git/cms [remote "bitbucket"] url = https://1625@bitbucket.org/1625/cms.git fetch = +refs/heads/*:ref...

nodejs 获取IP地址 23 Oct 2012 | 12:20 pm

使用nginx代理时需设置头,参考配置:http://1625.me/?p=38 var ip = req.header('x-forwarded-for') || req.connection.remoteAddress;

nginx 配置代理 23 Oct 2012 | 12:01 pm

server { listen 80; server_name shoe.czmin.com; location / { proxy_pass http://127.0.0.1:83/; proxy_redirect default ; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_...

wordpress 自定义文章类型(register_post_type)详解 16 May 2012 | 03:37 pm

functions.php添加以下代码 创建文章类型: 添加分类: 前台模板文件: taxonomy.php 或者 taxonomy-blogcate.php

jquery 加载 google-analytics 14 May 2012 | 06:23 pm

<script type=”text/javascript”> var gaJsHost = ((“https:” == document.location.protocol) ? “https://ssl.” : “http://www.”); $.getScript(gaJsHost + “google-analytics.com/ga.js”,function(){ try { va...

HTML5 Element Flowchart 27 Apr 2012 | 02:13 pm

各浏览器中 Date 对象的 toLocaleString 方法的返回值不一致 19 Apr 2012 | 08:56 pm

问题分析 假设当前时间为 2009 年 12 月 29 日 12:00:16,地点为 中国 北京,测试以下代码: alert(new Date().toLocaleString()); 各浏览器下的输出结果,如下表所示: 各浏览器下的输出结果,如下表所示: IE Firefox 2009年12月29日 12:00:161 Chrome Tue Dec 29 2009 12:00:1...

Recently parsed news:

Recent searches: