基本信息
源码名称:PHP调用 Jquery ajaxForm 返回 xml json html 的几个实例 附完整源码
源码大小:0.05M
文件格式:.zip
开发语言:js
更新时间:2013-05-24
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>demo8.html</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <script src="jquery-1.3.1.js" type="text/javascript"></script> <script src="jquery.form.js" type="text/javascript"></script> <script type="text/javascript"> // json $(document).ready(function() { $('#myForm').ajaxForm({ // 声明 服务器返回数据的类型. dataType: 'json', success: processJson }); }); function processJson(data) { // 'data'是一个json对象,从服务器返回的. $('#jsonOut').html(data.name " " data.address " " data.comment); } // xml $(document).ready(function() { $('#xmlForm').ajaxForm({ // 声明 服务器返回数据的类型. dataType: 'xml', success: processXml }); }); function processXml(responseXML) { // 'responseXML' 是一个XML的文档 ,从服务器返回的. var name = $('name', responseXML).text(); var address = $('address', responseXML).text(); var comment = $('comment', responseXML).text(); $('#xmlOut').html(name " " address " " comment); } // html $(document).ready(function() { $('#htmlForm').ajaxForm({ // 用服务器返回的数据 更新 id为 htmlcssrain 的内容. target: '#htmlOut', success: function() { $('#htmlOut').fadeIn('slow'); } }); }); </script> </head> <body> <h3> Demo 8 : form插件的使用--dataType的其他方式. </h3> <!-- demo1 json--> <h4>json方式返回</h4> <form id="myForm" action="json.php" method="post"> 名称: <input type="text" name="name" id="name" /> <br/> 地址: <input type="text" name="address" id="address"/><br/> 自我介绍: <textarea name="comment" id="comment" ></textarea> <br/> <input type="submit" id="test" value="json方式返回" /> <br/> <div id="jsonOut" ></div> </form> <!-- demo2 xml--> <h4>xml方式返回</h4> <form id="xmlForm" action="xml.php" method="post"> 名称: <input type="text" name="xmlname" id="xmlname" /> <br/> 地址: <input type="text" name="xmladdress" id="xmladdress"/><br/> 自我介绍: <textarea name="xmlcomment" id="xmlcomment" ></textarea> <br/> <input type="submit" id="xmltest" value="xml方式返回" /> <br/> <div id="xmlOut" ></div> </form> <!-- demo3 html--> <h4>html方式返回</h4> <form id="htmlForm" action="html.php" method="post"> 名称: <input type="text" name="htmlname" id="htmlname" /> <br/> 地址: <input type="text" name="htmladdress" id="htmladdress"/><br/> 自我介绍: <textarea name="htmlcomment" id="htmlcomment" ></textarea> <br/> <input type="submit" id="htmltest" value="html方式返回" /> <br/> <div id="htmlOut" ></div> </form> </body> </html>