1 2 3 4 下一页 译者按: xajax 最大的特点是他采用了XML response,这样我们可以用PHP来布置,处理异步传送数据之后,网页内容的更新。而这些操作其它的ajax 框架都是由js来完成的的。xajax 使我们只需要写一些php函数,就可以实现。 所有学好xajax的关健在于熟练掌握 xajaxresponse 类。 tutorials:learn xajax in 10 minutes 教程:十分钟学会 xajax using xajax in a php script 一个使用的xajax的php脚本: include the xajax class library: 调用xajax类库: require_once("xajax.inc.php"); instantiate the xajax object: 实例化xajax对象 $xajax = new xajax(); reGISter the names of the php functions you want to be able to call through xajax: 注册一个你想用xajax来调用的php函数名(与JavaScript中的函数名相对应 xajax_myfunction) $xajax->registerfunction("myfunction"); write the php functions you have registered and use the xajaxresponse object to return xml commands from them: 编写那个你刚刚已经注册的php函数,并从中用 xajaxresponse 对象来返回xml指令集
(责任编辑:admin) |