Archive for 十月, 2009
-
十 10, 2009
No Comments访问GOOGLE相册
1. win+r notepad.exe C:\WINDOWS\system32\drivers\etc\hosts 2. 增加 203.208.39.99 lh1.ggpht.com lh2.ggpht.com lh3.ggpht.com lh4.ggpht.com lh5.ggpht.com lh6.ggpht.com lh7.ggpht.com 203.208.39.99 lh8.ggpht.com...
-
十 10, 2009
No Comments同事提供的题目(Taobao)
alert(toRGB("#0000FF")); //返回rgb(0,0,255) alert(toRGB("#00F")); //返回rgb(0,0,255) alert(toRGB("#FF0000")); //返回rgb(255,0,0) alert(toRGB("taobao")); //返回rgb(taobao) alert(toRGB("#G00")); //返回rgb(#G00) function toRGB(color){ //第有一字符有#号 if(color.indexOf('#')==0){ //判断长度 if(color.length==4){ //取出字母 r = color.match(/([\da-z])/ig); }else{ //取出字母 r = color.match(/([\da-z]{2})/ig); } //返回 return 'rgb('+formatHEX(r) +')'; }else{ return 'rgb('+color+')'; } } //转化色彩数组转为10进制 function formatHEX(x){ var html=[]; for(i in x){ html[i] = parseInt(x[i], 16); if(isNaN(html[i])){ return '#'+x.join(''); } } return html.join(',');...