"Help" -> "Install New Software..." -> "Add..."Location:http://download.eclipse.org/technology/m2e/releases/1.2/1.2.0.20120903-1050该link获得方法:浏览网址http:...
分类:
系统相关 时间:
2014-09-16 10:31:20
阅读次数:
275
1.document.write(""); 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:document->html->(head,body)4.一个浏览器窗口中的DOM顺序是:window->(navigator,screen,history,location,document)5...
分类:
Web程序 时间:
2014-09-16 09:15:10
阅读次数:
295
# 前后端分离的利器:fiddler的实用功能举例##what's fiddlerfiddler是一款代理软件,对于前后端分离开发非常重要。可以说,如果前端开发没有用上fiddler或类似软件,那还不能算是真正的前端开发。fiddler有三大实用功能:做代理,造响应(反向代理),造请求。下载安装请自...
分类:
其他好文 时间:
2014-09-16 00:11:49
阅读次数:
369
$("#addfav").click(function() { var ua = navigator.userAgent.toLowerCase(), url =location.href, sitename =document.title; if(ua.indexOf("msi...
分类:
其他好文 时间:
2014-09-15 19:29:39
阅读次数:
141
如果基于WEB根目录下,要禁止用户访问/config目录,或者要禁止用户访问/config.ini(ZF常用INI,不过建议还是放到WEB目录以外的地方),可以通过location进行配置,返回403或者404等location = /config/ { return 404; } locatio....
分类:
其他好文 时间:
2014-09-15 17:33:59
阅读次数:
168
php和nginx的配置server{ root html; listen 80; server_name a.com; index index.php index.html ; location ~ \.php$ { fastcgi_pass 127.0....
分类:
Web程序 时间:
2014-09-15 12:41:28
阅读次数:
178
DevExpress.XtraGrid.Views.Grid.ViewInfo.GridHitInfo vi =gridView1.CalcHitInfo(e.Location);if (vi.InRow&&e.Button == MouseButtons.Right){ cmsFBF.Sh...
分类:
其他好文 时间:
2014-09-15 12:38:28
阅读次数:
198
代理有3种:标准的传统代理(不考虑了)透明代理(适用于局域网接入互联网网关,给内部用户做缓存)反向代理(适用于在互联网的WEB站点做缓存)一、透明代理前提透明代理服务器为192.168.5.205局域网测试机192.168.5.1601.安装[root@localhost~]#rpm-ivhsquid-3.1.10-1.el6_1.1..
分类:
其他好文 时间:
2014-09-15 03:20:29
阅读次数:
324
++(a++) a++相当于int a;{int temp=a;a++;teturn temp;}所以我们可以将++(a++)看成++temp;而temp显然是一个右值,所以不能用啊~~ L-value中的L指的是Location,表示可寻址。The "l" in lvalue can be tho...
分类:
编程语言 时间:
2014-09-14 23:35:27
阅读次数:
227
import android.text.format.Time;还有一个是DateLocation中的gettime,这几个每个默认的格式都不一样,直接输出字符串各自得到了不同比如按照获取当前时间 现在的时间2014/09/14 22:24第一个输出 20140914T221841Asia/Cho....
分类:
移动开发 时间:
2014-09-14 23:27:37
阅读次数:
448