欢迎关注我的个人博客blog.timene.com
一如既往的是pucktpub出版社,一如既往的是前端,一如既往的是开源。
公司内部KM统计大家最喜欢使用的AJAX框架,还是jQuery占了主流,但有不少筒靴选择了MooTools,并且是传说的OO,于是勾起学习MooTools的欲望,在pucktpub搜了一下,正好有一本《MooTools 1.2 Beginner's Guide》,于是这无数次拖延之后,今天终于鼓起勇气把它看下去。
这本书的语言不像其learning系列通俗易懂,但是过了英语六级的应该也不在话下。主要内容还是JS框架的老东西,DOM,Events,Animation,Ajax和Plugins,感觉和jQuery的东西差不多,就是又多了一套不同的语法。在OO方面也还没看出来具体的杀伤力,可能需要实践。
第一章《MooTools and Me》老东西,MooTools的优势和安装;
第二章《Writing JavaScript with MooTools》讲了HTML,CSS和JavaScript的分离,也就是obtrusive,然后介绍了一些Hello World级别的例子。记忆深刻的是定义class的方式,和继承的方式
var Dog = new Class(
{
// Implements is a class property
// upon which other classes methods will be added
Implements: [ Options ],
// Default options for our Dog
options: {
name : 'Barkee',
type : 'Poodle',
age : 4
},
// initialize is a MooTools method/constructor that executes the
//following function whenever a new instance of a class is created
initialize: function( options )
{
this.setOptions( options );
},
// Create a method which when passed to a instance of Dog will
//tell us our dog is barking.
bark : function()
{
alert( this.options.name + ' is barking.' );
},
});
继承就是把上面代码中的Implements替换为Extends
第三章《Selecting DOM Elements》就是DOM选择,和jQuery不同的是MooTools有一个$(),还有一个$$(),第一个只是能用ID选择,并且在$("ID")没有"#"号,$$()的用法和jQuery的中的$()用法一样,感觉可能还没有jQuery强大。
第四章《The Core's Useful Utility》讲了客户端浏览器和OS的探测,时间和定时器的东西。花了很大篇幅讲探测浏览器和OS,个人不是很感兴趣。
第五章《Working with Events》MooTools的事件,感觉还是jQuery更方便和强大些。
第六章《Bringing Web Pages to Life Using Animation》讲动画,跳过没看。
第七章《Going 2.0 with Ajax》讲Ajax,感觉还是jQuery方便强大些。
第八章讲插件Plugin,第九章讲插件的开发,这两章没看。
整体感觉这本书不是那么完美,代码例子都简单到位,但花了太多页面空间,还有就是语言不是那么流畅。并且发现前端轻量级框架基本都是那些东西。重量级点的比如Ext js这这些不是一个思路。想快速开发,觉得Ext js不错,哐哐哐,几个组件一搭一个页面就出来了,剩下的写Server端就好了。但是个人还是喜欢这种薄轻透的东西,感觉有种控制感,哈哈哈