dhtmlxAjax

码农软件 · 软件分类 · AJAX框架/RIA · 2019-03-29 08:28:18

软件介绍

dhtmlx Ajax 是 dhtmlx JavaScript 项目组一个封装了 Ajax 的 JavaScript 包。主要的特性有:

  • 支持 GET / POST 方法
  • 支持异步和同步两种调用方法
  • 支持多浏览器
  • 可很方便的集成到 dhtmlx 的其他 JavaScript 应用
  • Automatic new loader creations
  • XPath
  • XSLT

下面是使用 dhtmlxAjax 进行 Ajax 调用的示例:

<script>
 
//function for processing response
function outputResponse(loader){
if(loader.xmlDoc.responseXML!=null)
alert(loader.doSerialization());
else
alert("Response contains no XML");
}

//send async GET request
dhtmlxAjax.get("process.php?param1=value&param2=value",outputResponse);

//send async POST request
dhtmlxAjax.post("process.php","param1=value&param2=value",outputResponse);

//send sync GET request
var loader = dhtmlxAjax.getSync("process.php?param1=value&param2=value");

//send sync POST request
var loader = dhtmlxAjax.postSync("process.php","param1=value&param2=value");
</script>

本文地址:https://www.codercto.com/soft/d/2389.html

Data Structures and Algorithms in Java

Data Structures and Algorithms in Java

Robert Lafore / Sams / 2002-11-06 / USD 64.99

Data Structures and Algorithms in Java, Second Edition is designed to be easy to read and understand although the topic itself is complicated. Algorithms are the procedures that software programs use......一起来看看 《Data Structures and Algorithms in Java》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

RGB CMYK 转换工具
RGB CMYK 转换工具

RGB CMYK 互转工具