Unobstrusive, client-side bindings to server-side implmentation of jQuery (actually only PHP is supported).
Scenario is simple:
Example:
$.server({url: 'http://somesite.com})
.find('.my-class')
.client(function(response){
$('.destination').html(response);
});
This plugin is a subproject of phpQuery, and their releases are combined.
摘 要:在目前的Web2.0热潮中,AJAX正吸引着全世界的眼球,成为人们谈论最多的技术术语。AJAX技术很大程度改善了WEB应用的用户体验,jQuery的创建和使用大大简化了AJAX的开发。本文首先对AJAX技术与传统Web开发进行了对比分析,阐述AJAX技术异步交互的优势,其次,通过一个实例,在具体应用中体现jQuery的特点,最后,总结全文论述以及展望。 关键词:jQuery;AJAX;异步