XAJAX 编程入门实例两则
XAJAX是一个比较优秀的AJAX toolkit工具,安装很简单,就是吧他的xajax.inc.php文件copy到你制定的目录下面就可以了。
下面举两个列子来说明如何使用
1)helloworld
helloworld是每一个编程语言所必须的,所以这里也不例外,我会就代码给出解释
[coolcode]
addAssign(“div1″,”innerHTML”,$text); #给id为div1的html元素的innerHTML属性分配$text指,其他的方法请参考前面贴出的XAJAX介绍
return $objResponse->getXML(); #返回赋值后的代码,采用xml格式
}
// Instantiate the xajax object. No parameters defaults requestURI to this page, method to POST, and debug to off
$xajax = new xajax();
//$xajax->debugOn(); // Uncomment this line to turn debugging on
// Specify the PHP functions to wrap. The JavaScript wrappers will be named xajax_functionname
$xajax->registerFunction(“helloWorld”); #注册函数,这个也是必须的,用来保证,javascript能调用php里面的函数
// Process any requests. Because our requestURI is the same as our html page,
// this must be called before any headers or HTML output have been sent
$xajax->processRequests();
?>