题外话
不知道最开始是由于查找 Oracle 的技术文章,还是查找关于 Movable Type 的文章,找到了 Fenng 的 DBA notes。如果是 Oracle 的话,那就是校内有人攻击国际出口,上面有人来调查后,mex(你在网络何处?)提到的将路由日志提取格式化存入Oracle数据库,并有页面读取显示。至于 MT,那就是架设在 Host Monster 的 TakeItAlone 的安装调试时,四处寻找相关文档。
回到正题
Fenng 翻译了 Yahoo! 的 Exceptional Performance team 关于 Best Practices for Speeding Up Your Web Site 的一系列文章,其中也加入他个人很多的经验,很是不错,但是,看到 Fenng 的翻译提炼总结,对于熟悉者,豁然开朗,对于初学者,亦有茅塞顿开之效用,但是初学者可能仍然需要更加翔实的描述,所以,我决定把其中的详细说明也翻译下,也许多此一举吧,总之,列入日程中。
本来想把名字改换,这是对于发表相同内容的最基本的 SEO 守则,虽然内容并不尽完全相同,换掉总会是不错的,但思来想去,“加速网站之最佳实践”,名字好点有点过于俗气,还是沿用吧,想起昨天 Dickson 发的 “英文文章标题汇总”,有点标题党的意味。
Fenng’s Web 前端优化最佳实践
Web 前端优化最佳实践之内容篇
Web 前端优化最佳实践之 Server 篇
Web 前端优化最佳实践之 Cookie 篇
Web 前端优化最佳实践之 CSS 篇
Web 前端优化最佳实践之 [...]
Archive for ‘JavaScript’ Category
Visual jQuery 1.1 for jQuery 1.1
Visual jQuery 1.1 for jQuery 1.1.2
jQuery 1.2 API 参考文档中文版
我发现在 visualjquery.com 上 浏览 与 下载 的由一个小小的区别,就是body描述不尽相同,如上链接所示,小版本号的变化。
中文参考文档由 jQuery 中文社区 维护发布。学习的手册有了,再找下工具,就该开始学习了。
已经有了第一个学习代码 – 表格隔行换色
01 <script type=“text/javascript” src=“jquery.js”></script>
02
03 <script type=“text/javascript”>
04
05 $(document).ready(function(){
06
07 $(“.stripe_tb tr”).mouseover(function(){
08
09 //如果鼠标移到class为stripe_tb的表格的tr上时,执行函数
10
11 $(this).addClass(“over”);}).mouseout(function(){
12
13 //给这行添加class值为over,并且当鼠标一出该行时执行函数
14
15 $(this).removeClass(“over”);}) //移除该行的class
16
17 $(“.stripe_tb tr:even”).addClass(“alt”);
18
19 //给class为stripe_tb的表格的偶数行添加class值为alt
20
21 });
22
23 </script>
以上代码并没有用WordPress的插件生成,而是由 半瓶墨水 开发的 代码发芽网 生成,效果不错。
Description
jQuery is a powerful JavaScript library that can enhance your websites regardless of your background. In this book, creators of the popular jQuery learning resource, learningquery.com, share their knowledge, experience, and enthusiasm about jQuery to help you get the most from the library and to make your web applications shine. For designers, jQuery leverages existing [...]