function FindProxyForURL(url, host) {
if (/google/i.test(host)) return proxy;
.......
}
1
varint OP 语法赶脚怪怪的。。。
|
2
faceair 2015-09-21 22:34:39 +08:00
如果 host 里面有 google 字样就直接代理
|
4
varint OP 搜到了答案,自问自答一下:
if(/google/i.test(host))拆开来写 re = /google/i; 定义正则表达式用来匹配 google, i 表示不区分大小写 if(re.test(host)) 判断 host 是不是匹配 google ref: http://bbs.csdn.net/topics/320061843 |
5
Tink 2015-09-22 00:27:04 +08:00
还能这么写?万能的啊
|