学习笔记一:学用mootools的Ajax对象

学习笔记一:学用mootools的Ajax对象

看mootools能够按所需组件进行下载,所以对他尝试一下,第一个例子就是Ajax组件。

这个是客户端文件:testAjax.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 >


 

这个是服务器文件:testAjax.php
<? php
header ( ' Content-Type:text/html;charset=gb2312 ' ); // 防止中文信息有乱码
header ( ' Cache-Control:no-cache ' ); // 防止浏览器缓存,导致按F5刷新不管用
echo ( ' This is a test for mootools.Ajax,中文信息没有乱码 ' );
?>


简单吗?。。。

你可能感兴趣的:(学习笔记一:学用mootools的Ajax对象)