启动了一个ajax的项目, 项目地址 
http://mongoose.sf.net/ .
Mongoose是一个ajax的纯Javascript的framework. 目前提供唯一一个component —— 一个输入检查的component. 
使用方法
1 var checker = new Checker("http://localhost:8080/webctx/checker");
var checker = new Checker("http://localhost:8080/webctx/checker");
2 checker.check(this);
checker.check(this); 也可以带一个callback函数
1 checker.check(this, 
2               function(resp) {
3                   document.getElementById('msg').innerText = decodeURIComponent(resp.responseText);
4               });
目前Mongoose在Shift_JIS/GB2312/UTF-8下测试通过,在Microsoft Internet Explorer 6.0 sp2测试通过。
Mongoose还带有一个简单的log模块,可以用来调试Javascript.