JQuery中ajax和JSON的獲取
1.getJSON
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>使用getJSON()方法非同步載入JSON格式資料</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
</head>
<body>
<div id="divtest">
<div class="title">
<span class="fl">我最喜歡的一項運動</span>
<span class="fr">
<input id="btnShow" type="button" value="get" />
</span>
</div>
<ul></ul>
</div>
<script type="text/javascript">
$(function () {
$("#btnShow").bind("click", function () {
var $this = $(this);
$.getJSON("http://localhost:8080/news/ShowNewsService", function (data){
$this.attr("disabled", "false");
$.each(data, function (key, dataList) {
for(var i=0; i<dataList.length; i++)
$("ul").append("<li>" + dataList[i].newsUrl + "</li>");
});
});
});
});
</script>
</body>
</html>
2.Ajax方式非同步獲取伺服器資料
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>使用ajax()方法載入伺服器資料</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="divtest">
<div class="title">
<span class="fl">檢測數字的奇偶性</span>
<span class="fr">
<input id="btnCheck" type="button" value="檢測" />
</span>
</div>
<ul>
<li>請求輸入一個數字
<input id="txtNumber" type="text" size="12" />
</li>
</ul>
</div>
<script type="text/javascript">
$(function () {
$("#btnCheck").bind("click", function () {
$.ajax({
url: "http://www.imooc.com/data/check.php",
data: { num: $("#txtNumber").val() },
type: "post",
success: function (data) {
$("ul").append("<li>你輸入的<b> "
+ $("#txtNumber").val() + " </b>是<b> "
+ data + " </b></li>");
}
});
})
});
</script>
</body>
</html>
3.參考
http://blog.csdn.net/smartsmile2012/article/details/17316351
相關文章
- jQuery : ajax獲取Status CodejQuery
- jQuery入門(五)Ajax和jsonjQueryJSON
- jQuery、ajax新增Json資料jQueryJSON
- 通過JQuery ajax獲取伺服器時間jQuery伺服器
- JQuery 獲取select被選中的value和textjQuery
- 如何用jquery獲取DIV中的TR和TDjQuery
- jquery和bootstrap獲取checkbox選中的多行資料jQueryboot
- axios,Ajax,jQuery ajax,axios和fetch的區別iOSjQuery
- JQuery中ajax的使用與快取問題的解決方法jQuery快取
- jQuery - 獲取內容和屬性jQuery
- Jquery 和 Ajax的 使用方法jQuery
- jQuery的AJAX請求中contentType和dataType的區別jQuery
- 介面測試之 json 中的 key 獲取JSON
- 介面測試之json中的key獲取JSON
- iframe的操作-Js/Jquery獲取iframe中的元素JSjQuery
- jQuery – AJAX get() 和 post() 方法jQuery
- jQuery捕獲-獲取DOM元素內容和屬性jQuery
- JQuery獲取input type=jQuery
- jQuery - AJAXjQuery
- jQuery AjaxjQuery
- Jquery如何獲取和設定元素內容?jQuery
- Jquery中獲取iframe的程式碼(window.top.parent)jQuery
- 使用Jquery和JSON的州和城市列表jQueryJSON
- jQuery獲取class相同的div中的最後一個jQuery
- datatables使用ajax獲取資料
- Python中Spark讀取parquet檔案並獲取schema的JSON表示PythonSparkJSON
- Javaweb——(day12)JSON和AjaxJavaWebJSON
- 談談jQuery中Ajax那些事jQuery
- JS,Jquery獲取各種螢幕的寬度和高度JSjQuery
- jquery獲取元素節點jQuery
- 第88節:Java中的Ajax和ASP.NET和TCP/IP 教程和JSONJavaASP.NETTCPJSON
- 基於jQuery的AjaxjQuery
- jQuery對Ajax的支援jQuery
- jQuery AJAX 方法jQuery
- jQuery.ajaxjQuery
- ajax +jquery 基本jQuery
- 面試之jquery中的ajax方法引數面試jQuery
- 深入瞭解jquery中的ajax方法引數jQuery
- jquery獲取圖片的真實大小jQuery