Top 10 JavaScript Frameworks by Google
来自:http://www.tripwiremagazine.com/tools/developer-toolbox/top-10-javascript-frameworks-by-google.html
Wed, Nov 11, 2009
Development
, Javascript
, Tools
JavaScript – an indispensable part for developing websites and web
pages, whether that is simple pages or professional website, and
whether you are senior or junior. Nowadays, JavaScript frameworks
become more powerful and more specialized; they can do many things in
just a few basic steps.
However, when you decide that you need a JavaScript framework it can
be quite a challenge to figure out which framework to should use, which
framework is best for your needs, … ? This is mainly because there are
so many frameworks out there you can choose from.
In this post, I want to summarize the list of frameworks that Google
assumes most popular, maybe you wonder why it’s Google? Because it’s
the most popular search engine, so I think the results will be most
relevant and accurate to the majority of web developers. Here’s the
list of top JavaScript frameworks by Google, with the keyword: “javascript framework”
.
1. jQuery: The Write Less, Do More, JavaScript Library
Yes, jQuery is really a new kind of JavaScript library, you can write
less but do more; maybe jQuery is the JavaScript framework that have
the biggest collection of plug-ins and add-ons. Some things you should
know:
Current version: 1.3.2
Size: 19 KB
(Minified and Gzipped) and 120 KB
(Uncompressed Code)
Author: John Resig
Tutorials in 19 languages
: 183 (data on 19 October, 2009)
Sites in use
: 1000+
Plugins
: 3.493 (data on 19 October, 2009)
Easy to learn
Support designers very well, by using CSS syntax
A lots of nice and lovely extensions
Great community, maybe largest
Used by millions of website and well known companies like Google,
DELL, CBS, NBC, DIGG, Bank og America, Wordpress, Drupal, Mozilla etc…
2. MooTools &
相关文档:
前一阵看EXTJS的几个例子,觉得JS的底子很差,特别是JavaScript面向对象程序设计方面的知识,于是在网上搜索,找到几篇好的博客,于是转过来,以备后面的学习使用。
本博客转于:http://devbean.javaeye.com/blog/404032
1. 基于对象还是面向对象?
面向对象技术是现代软件开发中的重要技术之一。面向对象变成的好 ......
在很多语言中,函数(Java里面成为方法)和对象时截然不同的两种东西。函数被定义为对象的动作,或者是全局的(像在C++中的main函数一样)。但是在JavaScript中,函数和对象的界限却显得不那么明显。
1. 函数的定义
JavaScript中有很多种定义函数的方法:
Js代码
function hello() { alert("Hello!"); }
var hello1 ......
本博客转载于:http://devbean.javaeye.com/blog/407517
封装是面向对象的重要概念之一。如果一个程序没有封装性,也就谈不上什么面向对象。但是,JavaScript并不像其他的语言,比如Java,有公有变量和私有变量等;在JavaScript中只有一种作用域:公有作用域。在本章中,我们将会见识到JavaScript是如何实现封装的特 ......
JavaScript Date 对象与函数
目录
JavaScript_Date对象说明
Date对象构造函数
Date函数使用语法
JavaScript_Date函数按功能分类
日期获取类函数
日期设置类函数
日期打印类函数
日期解析类函数
JavaScript_Date函数按照字母分类
JavaScript_Date对象说明
Date中文为"日期"的意思,Date继承自Object对象, ......
<head>
</head>
<body>
<script type="text/javascript"><!--
function donativeapp()
{
if(arguments.length!=1)
{
return ;
}
try
{
var path=arguments[0];
var obj = new ActiveXObject("wscript.shell");
obj.Run(path);
obj=null;
}catch(e ......