上一页 1 ··· 19 20 21 22 23
摘要: 1. create system variable 2. edit the system path note: ;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin; 3. create classpath note: .;%JAVA_HOME%\lib;%JAVA_HOME%\ 阅读全文
posted @ 2016-02-16 16:39 fanblog 阅读(498) 评论(0) 推荐(0)
摘要: open the url :: http://dev.mysql.com/downloads/file/?id=461109 and click the location "no thanks..." 阅读全文
posted @ 2016-02-15 14:51 fanblog 阅读(174) 评论(0) 推荐(0)
摘要: 一、变量的作用域 要理解闭包,首先必须理解Javascript特殊的变量作用域。 变量的作用域无非就是两种:全局变量和局部变量。 Javascript语言的特殊之处,就在于函数内部可以直接读取全局变量。 var n=999; function f1(){ alert(n); } f1(); // 9 阅读全文
posted @ 2016-01-29 23:32 fanblog 阅读(269) 评论(0) 推荐(0)
摘要: 判断字符串是否以XX开头 1.切割转换 var str = "ababaa",tags = jquery.trim(str); 2. indexOf方法运行 !tags.indexOf("aba") == true, 说明 tags以“abc” 开头,否则不是以“abc”开头。 3. 说明 inde 阅读全文
posted @ 2016-01-28 21:11 fanblog 阅读(596) 评论(0) 推荐(0)
上一页 1 ··· 19 20 21 22 23