Ajax 中文手册本文由 tttt9990000 贡献 doc 文档可能在 WAP 端浏览体验不佳。建议您优先选择 TXT ,或下载源文件到本机查看。原作者介绍 http://2dming. 原作者介绍 http://2dming. 1. AJAX 介绍 AJAX 是一种运用 JavaScript 和可扩展标记语言(XML), 在网络浏览器和服务器之间传送或接受数据的技术. 2. AJAX 实例 AJAX 可以用来创建更多交互式的网络应用程序. 3. AJAX 源代码简要分析上一章节效果的代码原理 4. AJAX 与数据库 AJAX 可以用来和数据端进行数据的交互联通. 5. AJAX 使用 AJAX 制作留言本使用已有的 AJAX 教程, 制作一个属于自己的留言本吧……实例 http://2dming. Ajax 实例 http://2dming. AJAX can be used to create more interactive applications. AJAX 可以用来创建更多交互式的网络应用程序. AJAX Example AJAX 实例 In the AJAX example below we will demonstrate how a web page municate with a web server online asa user enters data into a web form. 在以下的 AJAX 范例中, 我们将了解到当用户以网页格式输入数据时一个网页是如何与网络服务器连接的. Type a Name in the Box Below 在下面的框中输入姓名* 实际操作请前往 W3Schools First Name: Suggestions: Example Explained - The HTML Form 实例解析实例解析- 超文本标记语言模式 The form above has the following HTML code: 以上的范例所含超文本标记语言代码如下: First Name: Suggestions: As you can see it is just a simple HTML form with a simple input field called "txt1". 就如你看到的, 它只是一个普通的表单, 里面有一称为"txt1" 的输入框 The paragraph below the form contains a span called "txtHint". The span is used asa placeholder for hints retrieved from the web server. 下一段包括了一个称做"txtHint" 的 SPAN. 这个 SPAN 是用来存储从服务器重新获得的信息的. When the user inputs data, a function called "showHint()" is executed. The execution of the function is triggered by the "onkeyup" event. In other words: Each time the user moves his finger away from a keyboard key inside the txt1 field, the function showHint is called. 当用户输入数据, 名为"showHint()" 的函数将被执行. 这个函数的执行是由"onkeyup" 事件触发的. 换种说法: 每当用户在 txt1 区域内触动键盘按钮, showHint 的功能就被执行. Example Explained - The showHint() Function 实例解析- showHint() 函数实例解析- showHint() 函数 The showHint() function isa very simple JavaScript function placed in the First Name: Suggestions: The JavaScript code is listed below. JS代码在下面 The AJAX JavaScript AJAX 的 JS This is the JavaScript code stored in the file "": 这是 JS 代码, 被保存在"" 文件中 var xmlHttp function showHint(str) { if ( > 0)
Ajax中文手册 来自淘豆网m.daumloan.com转载请标明出处.