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裡操作json相關的方法和例項jQueryJSON
- jQuery入門(五)Ajax和jsonjQueryJSON
- Jquery 和 Ajax的 使用方法jQuery
- jQuery、ajax新增Json資料jQueryJSON
- jQuery 例項jQuery
- 使用Jquery和JSON的州和城市列表jQueryJSON
- jQuery Validate全域性配置和例項配置jQuery
- axios,Ajax,jQuery ajax,axios和fetch的區別iOSjQuery
- json例項練習 json物件JSON物件
- 使用json和jquery級聯選擇JSONjQuery
- 使用Jquery和Ajax的動態依賴選擇框jQuery
- jQuery – AJAX get() 和 post() 方法jQuery
- jQuery記住使用者名稱和密碼效果程式碼例項jQuery密碼
- jQuery - AJAXjQuery
- jQuery AjaxjQuery
- 使用promise封裝jquery的ajax來實現async和await方式Promise封裝jQueryAI
- jQuery控制div顯示和隱藏程式碼例項jQuery
- Javaweb——(day12)JSON和AjaxJavaWebJSON
- jQuery tab選項卡效果程式碼例項jQuery
- 基於jQuery的AjaxjQuery
- jQuery對Ajax的支援jQuery
- jQuery AJAX 方法jQuery
- jQuery.ajaxjQuery
- ajax +jquery 基本jQuery
- jQuery.map()方法程式碼例項jQuery
- 將物件解析為JSON資料和將JSON資料解析為物件的簡單例項物件JSON單例
- JSON&AJAXJSON
- React 中用jQuery的ajax 和 axios請求資料ReactjQueryiOS
- jquery.idTabs.min.js選項卡程式碼例項jQueryJS
- 跨域請求之jQuery的ajax jsonp的使用解惑跨域jQueryJSON
- jQuery的AJAX請求中contentType和dataType的區別jQuery
- jQuery利用name匹配元素程式碼例項jQuery
- jquery經典例項之回到頂部jQuery
- jQuery 使用ajax,並重新整理頁面jQuery
- jQuery裡如何使用ajax傳送請求jQuery
- jQuery AJAX 簡介jQuery
- jQuery – AJAX load() 方法jQuery
- Ajax,jQuery ajax,axios和fetch介紹、區別以及優缺點jQueryiOS