jQueryServer

授权协议 未知
开发语言
所属分类 jQuery 插件、 其他jQuery插件
软件类型 开源软件
地区 不详
投 递 者 左恺
操作系统 未知
开源组织
适用人群 未知
 软件概览

Unobstrusive, client-side bindings to server-side implmentation of jQuery (actually only PHP is supported).

Scenario is simple:

  • 1. Connect to server and make an Ajax request to somewhere (crossdomain allowed)
  • 2. Do some manipulations, you can even trigger a server-side event
  • 3. Get processed date back to browser

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;异步