网站找的一段文章,这里可以找到更多mootools里面的js:
http://mootools.net/more/
看mootools能够按所需组件进行下载,所以对他尝试一下,第一个例子就是Ajax组件。
这个是客户端文件:testAjax.html
[html]
<head>
<title>测试Ajax</title>
<meta http-equiv="content-type" content="text/html; charset=gb2312"/>
<script type="text/javascript" src="./js/mootools.v1.00.js?v=1"></script>
</head>
<body>
<textarea id=content cols=80 rows=20>
</textarea>
<script language="javascript" type="text/javascript">
new Ajax("./testAjax.php", {
method: 'get',
onComplete: function(){
$('content').value = this.response.text;
}
}).request();
</script>
</body>
</html>
[/html]
我测试出现: Ajax is not defined
最后只有用Request或者Request.HTML来完成,但是无法跨域请求。