Linux 软件免费装

AHAX

开发者 veloper
更新时间 2011年4月15日 09:56
PHP版本: 2.8 及以上
WordPress版本: 3.1

标签

plugin theme ajax development action ahax bind JavaScript public dependancy

下载

1.0

详情介绍:

AHAX is a drop-in solution that allows theme or plug-in developers to take advantage of a very simple and streamlined way of making AJAX requests. The goal of this plugin is to make the process of setting up an AJAX request as simple as possible. This plugin centers AJAX requests around an "action." This action is "bound" to a function (handler) on the back-end and called to from front-end via a custom JavaScript class method -- this process is demonstrated below. Back-End ahax::bind( 'get_random_number', 'generate_number' ); function generate_number($output) { $max = abs( ( int ) $_POST['max'] ); $output = mt_rand( 0 , ( $max <= 1000 ? $max : 1000 ) ); return $output; } Front-End var ahax = new AHAX(); ahax.post( 'get_random_number', { max : 1000 }, function( response ) { jQuery( '#ahax_number' ).html( response ); }); Website http://dan.doezema.com/2011/04/ahax-wordpress-plugin Author Daniel Doezema

安装:

  1. Upload ahax plugin directory to the /wp-content/plugins/ directory.
  2. Activate the plugin through the 'Plugins' menu in WordPress

常见问题:

Where can I get more information on AHAX?

There is an extensive blog post -- with a live example -- located here: http://dan.doezema.com/2011/04/ahax-wordpress-plugin