jsloadingtest.php

来自「php平台上的一个开源ajax框架........比较新」· PHP 代码 · 共 43 行

PHP
43
字号
<?phprequire_once("../../xajax_core/xajax.inc.php");require_once("../../xajax_core/legacy.inc.php");function testForm($formData){	sleep(4);	$objResponse = new legacyXajaxResponse();	$objResponse->addAlert("This is from the function");	$objResponse->addAssign("submittedDiv", "innerHTML", nl2br(print_r($formData, true)));	return $objResponse;}$xajax = new legacyXajax();$xajax->registerFunction("testForm");$xajax->processRequests();?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"        "http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>Javascript Loading Function Test (Legacy) | xajax Tests</title><?php $xajax->printJavascript("../../") ?><script type="text/javascript">function setup() {	xajax.loadingFunction = function() { alert("This is the loadingFunction...") }	xajax.doneLoadingFunction = function() { alert("This is the doneLoadingFunction...") }}</script></head><body onload="setup()"><h2><a href="index.php">xajax Legacy Mode Tests</a></h2><h1>Javascript Loading Function Test (Legacy)</h1><form id="testForm1" onsubmit="return false;"><p><input type="text" id="textBox1" name="textBox1" value="This is some text" /></p><p><input type="submit" value="Submit Normal" onclick="xajax.call('testForm', [xajax.getFormValues('testForm1')]); return false;" /></p></form><div id="submittedDiv"></div></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?