<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head><meta http-equiv="Content-Type" conte Read More
posted @ 2012-09-24 17:41 vincent_ds Views(806) Comments(0) Diggs(0)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf- Read More
posted @ 2012-09-23 17:41 vincent_ds Views(19682) Comments(0) Diggs(0)
1 <select id="single">2 <option>选择1号</option>3 <option>选择2号</option>4 <option value="选择2号">选择3号</option>5 </select>6 7 $("input:eq(0)").click(function(){8 $("#single").val("选择2号");9 });在jquery中,val()方法是 Read More
posted @ 2012-09-20 16:39 vincent_ds Views(351) Comments(0) Diggs(0)
后代选择器和过滤选择器不同 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title> new document </title> 5 <meta http Read More
posted @ 2012-09-20 11:08 vincent_ds Views(524) Comments(0) Diggs(0)
先找到C:\Program Files (x86)\Adobe\Adobe Help 删除Adobe Help这个目录。。因为旧版的文件在作祟!然后在运行主程序安装就OK了 Read More
posted @ 2012-09-14 00:03 vincent_ds Views(325) Comments(0) Diggs(0)
1 var time_range = function (beginTime, endTime, nowTime) { 2 var strb = beginTime.split (":"); 3 if (strb.length != 2) { 4 return false; 5 } 6 7 var stre = endTime.split (":"); 8 if (stre.length != 2) { 9 return false;10 }11 12 var strn = nowTime.split ... Read More
posted @ 2012-09-13 17:40 vincent_ds Views(21155) Comments(1) Diggs(1)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 <script src="jquery-1.3.2.min.js" type="text/javascript"></script> 6 <title></title> 7 <script lang Read More
posted @ 2012-09-12 10:55 vincent_ds Views(9884) Comments(0) Diggs(1)
1.ctrl+shift+n:打开工程中的文件(类似于eclipse中的ctrl+shift+R),目的是打开当前工程下任意目录的文件。2.ctrl+j:输出模板3.ctrl+b:跳到变量申明处4.ctrl+alt+T:围绕包裹代码(包括zencoding的WrapwithAbbreviation)5.ctrl+[]:匹配{}[]6.ctrl+F12:可以显示当前文件的结构7.ctrl+x: 剪切(删除)行,不选中,直接剪切整个行,如果选中部分内容则剪切选中的内容8.alt+left/right:标签切换9.ctrl+r:替换10.ctrl+shift+up:行移动11.shift+alt+u Read More
posted @ 2012-09-11 10:26 vincent_ds Views(267) Comments(0) Diggs(0)
error:THE jvm could not be started.The maximum heap size (-Xmx) might be too large or an antivirus or firewall tool could block the execution. 参考了国内外的一些网站 终于找到解决方法了.修改安装目录下的文件..\WebStorm 5.0\bin\WebStorm.exe.vmoptions把-Xmx改小就行了 我的改成了256m. Read More
posted @ 2012-09-10 21:59 vincent_ds Views(5231) Comments(0) Diggs(1)
本人根据此文修改,汉化,已兼容IE6,此插件自定义性很强,大家可以根据自己的需求来修改...http://www.foxrunsoftware.net/articles/javascript/date-range-picker-similar-to-google-analytics/#附上效果图:download:datepicker.ziphttp://vdisk.weibo.com/s/cibrt Read More
posted @ 2012-09-05 10:42 vincent_ds Views(3473) Comments(0) Diggs(0)