1 function isChrome360() { 2 if( navigator.userAgent.toLowerCase().indexOf('chrome') > -1 ) { 3 var desc = navigator.mimeTypes['applicati...
分类:
其他好文 时间:
2014-06-28 20:16:15
阅读次数:
240
functionrequest(paras){varurl=location.href;varparaString=url.substring(url.indexOf("?")+1,url.length).split("&");varparaObj={}for(i=0;j=paraString[i]...
分类:
Web程序 时间:
2014-06-28 18:25:01
阅读次数:
186
w3c手册定义和用法indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置stringObject.indexOf(searchvalue,fromindex)searchvalue必需。规定需检索的字符串值。fromindex可选的整数参数。规定在字符串中开始检索的位置。它的合法...
分类:
其他好文 时间:
2014-06-28 17:28:14
阅读次数:
187
String w = "The quick fox jumps over the lazy dog"; int start = w.indexOf('q'); int end = w.indexOf('k') + 1; Spannab...
分类:
其他好文 时间:
2014-06-27 15:13:07
阅读次数:
257
Basic Types and OperationsSomething new according to Java1 + 2跟(1).+(2)是一样的。val str = "Hello world"str indexOf 'o' 跟 str.indexOf('o')是一样的indexOf有两种形式的...
分类:
其他好文 时间:
2014-06-26 19:26:48
阅读次数:
193
前提:数组中的元素类型为:string在网上看了许多高大尚的文章,还是解决不了我的string arry 的问题,只能怪自己脑残了,上代码: jQ数组string去重 注意:在sbArray数组中,sbArray.indexOf("北京") 的返回值为 -...
分类:
Web程序 时间:
2014-06-25 17:23:11
阅读次数:
198
在IE8下有个js错误,但是在其它浏览器下(Firefox, Chrome, IE9)下面都很正常。后来调试发现原因是在IE8下,js数组没有indexOf方法。 在使用indexOf方法前,执行一下下面的js, 原理就是如果发现数组没有indexOf方法,会添加上这个方法 if (!Array.p...
分类:
其他好文 时间:
2014-06-25 15:00:43
阅读次数:
168
/***传入http请求的UserAgent*根据它判断是手机还是电脑发送过来的请求*@paramuserAgent*@return*/publicstaticbooleanchoose(StringuserAgent){if(userAgent.indexOf("Noki")>-1||//Noki...
分类:
移动开发 时间:
2014-06-25 14:50:24
阅读次数:
203
indexOf()方法,查找某字符串在一个字符串内的位置,没有则返回-1string aa="abcdef";int a=aa.indexOf("bc");//a会等于1int b=aa.indexOf("a");//b会等于0int c=aa.indexOf("g");c会等于-1所以你只要判断返...
分类:
其他好文 时间:
2014-06-20 15:14:51
阅读次数:
184
java自带替换String s="hlz_and_hourui哈哈"; String new_S=s.replaceAll("哈", "笑毛"); System.out.println(new_S);则输出为:"hlz_and_hourui笑毛笑毛"; 1 package find_repal.....
分类:
编程语言 时间:
2014-06-18 15:58:49
阅读次数:
264