jQuery的ajax和json使用例項
本章節分享一段程式碼例項,是jQuery封裝的ajax對JSON資料的請求處理。
程式碼比較簡單,對於有經驗的人員來說可以掠過,初學者可以做一下參考之用。
程式碼如下:
[HTML] 純文字檢視 複製程式碼<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script> $(document).ready(function(){ $("#bt").click(function(){ $.ajax({ type: "get", dataType: "json", url: "demo/jQuery/ajax/txt/json.txt", success: function(msg){ var data = msg str=""; $.each(data,function(index, n){ str=str+data[index].webName+","+data[index].url+","+data[index].age+"<br/>"; }); $("#show").html(str); } }); }) }) </script> </head> <body> <div id="show"></div> <input type="button" id="bt" value="檢視效果"/> </body> </html>
上面的程式碼實現了對json資料請求和處理的效果,程式碼比較簡單這裡就不多介紹了。
相關文章
- jQuery Ajax 例項 全解析jQuery
- jQuery - AJAX get() 和 post() 方法---非常好的例項jQuery
- jquery裡操作json相關的方法和例項jQueryJSON
- JQuery中ajax和JSON的獲取jQueryJSON
- jQuery入門(五)Ajax和jsonjQueryJSON
- jQuery ajax請求程式碼例項分享jQuery
- Jquery 和 Ajax的 使用方法jQuery
- jquery 的ajax請求示例和注意事項jQuery
- jquery使用each()方法遍歷json資料程式碼例項jQueryJSON
- jQuery、ajax新增Json資料jQueryJSON
- jQuery的ajax實現的刪除記錄程式碼例項jQuery
- php和json的應用例項PHPJSON
- 原生ajax處理json格式資料程式碼例項JSON
- jQuery對JSON格式資料的解析例項程式碼jQueryJSON
- JQuery使用AJAXjQuery
- jQuery處理json格式資料程式碼例項jQueryJSON
- 使用Jquery和JSON的州和城市列表jQueryJSON
- jQuery 例項jQuery
- ajax和json物件JSON物件
- jQuery遍歷json格式資料完整程式碼例項jQueryJSON
- 使用ajax方式提交表單程式碼例項
- asp.net和json的應用例項ASP.NETJSON
- Ajax使用一+javascript解析Ajax返回的json字串JavaScriptJSON字串
- Ajax Post 與 Get 例項
- 使用jquery篩選和過濾陣列程式碼例項jQuery陣列
- [Ajax]十個優秀的Ajax/Javascript例項網站JavaScript網站
- jquery ajax簡單使用jQuery
- jQuery.ajax的使用方法jQuery
- jQuery css()函式使用程式碼例項jQueryCSS函式
- jquery next()方法使用程式碼例項jQuery
- 使用Jquery和Ajax的動態依賴選擇框jQuery
- javascript和php使用ajax通訊傳遞JSONJavaScriptPHPJSON
- 使用json和jquery級聯選擇JSONjQuery
- json例項練習 json物件JSON物件
- jQuery is() 程式碼例項jQuery
- jquery實現的下拉和收縮程式碼例項jQuery
- jQuery Validate全域性配置和例項配置jQuery
- jquery增加和刪除行程式碼例項jQuery行程