想如果代理可用就使用代理,代理不可用就直接连接网络。新建文件放入javascript代码,保存为proxy.pac,保存路径c:\proxy.pacfunction FindProxyForURL(url, host) { return "PROXY 127.0.0.1:8888"...
分类:
其他好文 时间:
2014-07-03 19:40:54
阅读次数:
233
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
分类:
其他好文 时间:
2014-07-03 19:20:42
阅读次数:
189
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:
其他好文 时间:
2014-07-03 19:14:34
阅读次数:
206
webview是ios中显示远程数据的网页控件,webview能显示的内容很多,MP4、文本、pdf等等;关于js和oc代码的互相调用1:oc中调用js代码;>>oc中调用js代码很简单,一个方法:stringByEvaluatingJavaScriptFromString:@“”;>>要执行的js...
分类:
移动开发 时间:
2014-07-03 19:04:56
阅读次数:
245
题目
Say you have an array for which the ith element is the price of a given stock on day i.
If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the...
分类:
其他好文 时间:
2014-07-03 17:51:01
阅读次数:
235
一、Solr学习相关资料
1、官方材料
(1)快速入门:http://lucene.apache.org/solr/4_9_0/tutorial.html,以自带的example项目快速介绍发Solr的基础使用。
(2)API:http://lucene.apache.org/solr/4_9_0/index.html
(3)reference:PDF格式,apache-solr-ref-...
分类:
其他好文 时间:
2014-07-03 16:56:58
阅读次数:
245
1422 - Halloween Costumes
PDF (English)
Statistics
Forum
Time Limit: 2 second(s)
Memory Limit: 32 MB
Gappu has a very busy weekend ahead of him. Because, next...
分类:
其他好文 时间:
2014-07-03 16:31:28
阅读次数:
198
最近,每次打开编辑页面的时候,ie11总是会报一个错误,有时候ie11还会崩溃,后来跟进去,发现是easyUI这段代码的问题:
window.onresize = function() { $('table[id]').datagrid("resize");}
但是这个错误在其他版本的ie下面没有发生,在其他浏览器里也没有发生。
偶然发现出错的窗口里,有个checkbox,说是不要...
分类:
其他好文 时间:
2014-07-03 13:55:58
阅读次数:
181
在IE10和之后的IE版本中,当在输入框和密码框中输入的时候,后面会自动出现X按钮和小眼睛,如下图所示:令人苦恼的是,这个效果只有IE才有,其它浏览器是没有这个功能的。为了统一,我们就需要去掉这个功能,做法也很简单,直接在CSS中添加如下语句即可:/* 去除IE输入框的X标记 */input[typ...
分类:
Web程序 时间:
2014-07-03 12:39:00
阅读次数:
256
//关闭浏览器时才会触发此操作,刷新页面不执行 //n 检测鼠标相对于用户屏幕的水平位置 - 网页正文部分左:求出鼠标在当前窗口上的水平位置(参照:当前窗口右上角为0、0坐标) //m 网页正文全文宽 20这个值是指关闭按钮的宽度 //b=false,鼠标在当前窗口内 水平坐标 //b= t...
分类:
其他好文 时间:
2014-07-03 12:35:45
阅读次数:
352