jQuery學習(2)ajax()使用
在上一篇分享JavaScript之使用AJAX(適合初學者)中,我們學習瞭如何在JavaScript中使用AJAX.由於jQuery出色的效能和簡潔的寫法,且它也支援AJAX的使用,所以,本次分享將會展示如何在jQuery中使用ajax()函式。
關於jQuery的ajax()函式的教程,可以參考:http://www.w3school.com.cn/jquery/jquery_ref_ajax.asp ,當然,我們也可以jQuery.ajax()的官方文件:http://api.jquery.com/jquery.ajax/ ,該官方文件不僅詳細地介紹了該函式各個引數以及它們的含義,並且還給出了許多例子,值得一看。
關於Web伺服器以及檔案的配置,我們還是跟前一篇保持一致。接下來,我們將看一個具體的例子。
首先,我們的開始頁面(city_intro.html)如下:
該頁面的完整程式碼如下:
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.js"></script>
<script>
$(document).ready(function(){
$("#btn1").click(function(){
var city = $('#city').val();
htmlobj=$.ajax({
method: "POST",
url: "demo.php",
data: {query:city},
async:false,
});
$("#demo").html(htmlobj.responseText);
});
$("#btn2").click(function(){ location.reload(); });
});
</script>
</head>
<body>
<h3>City Introduction</h3>
<form>
City:
<select id='city'>
<option>Shanghai</option>
<option>Tokyo</option>
<option>New York</option>
</select>
</form>
<br>
<button id="btn1">Submit</button>
<button id="btn2">REFRESH</button>
<p id='demo'></p>
</body>
</html>
上述程式碼中,我們呼叫了ajax()函式,裡面的引數含義如下:
- method: 請求方式,'GET'或者'POST';
- url: 伺服器上的檔案網址;
- data: 傳送到伺服器的資料;
- async: 是否非同步.
demo.php的完整程式碼如下:
<?php
$citys = array();
$citys["Shanghai"] = "Shanghai is one of the four direct-controlled municipalities of China and the most populous city proper in the world, with a population of more than 24 million as of 2014.It is a global financial center and transport hub, with the world's busiest container port. Located in the Yangtze River Delta, it sits on the south edge of the estuary of the Yangtze in the middle portion of the East China coast. The municipality borders the provinces of Jiangsu and Zhejiang to the north, south and west, and is bounded to the east by the East China Sea.";
$citys["Tokyo"] = "Tokyo is the capital city of Japan and one of its 47 prefectures. The Greater Tokyo Area is the most populous metropolitan area in the world. It is the seat of the Emperor of Japan and the Japanese government. Tokyo is in the Kantō region on the southeastern side of the main island Honshu and includes the Izu Islands and Ogasawara Islands. Formerly known as Edo, it has been the de facto seat of governmentsince 1603 when Shogun Tokugawa Ieyasu made the city his headquarters. It officially became the capital after Emperor Meiji moved his seat to the city from the old capital of Kyoto in 1868; at that time Edo was renamed Tokyo. Tokyo Metropolis was formed in 1943 from the merger of the former Tokyo Prefecture and the city of Tokyo.";
$citys["New York"] = "The City of New York, often called New York City or simply New York, is the most populous city in the United States. With an estimated 2016 population of 8,537,673 distributed over a land area of about 302.6 square miles (784 km2), New York City is also the most densely populated major city in the United States. Located at the southern tip of the state of New York, the city is the center of the New York metropolitan area, one of the most populous urban agglomerations in the world with an estimated 23.7 million residents as of 2016. A global power city, New York City has been described as the cultural, financial, and media capital of the world, and exerts a significant impact upon commerce, entertainment,research, technology, education, politics, and sports. The city's fast pace defines the term New York minute. Home to the headquarters of the United Nations, New York is an important center for international diplomacy.";
$query = $_POST["query"];
echo $citys[$query];
?>
這樣我們可以在頁面上進行操作了,點選‘Shanghai’,顯示的頁面如下:
點選‘New York’,顯示的頁面如下:
本次分享到此結束,歡迎大家交流~~
相關文章
- jQuery學習筆記(ajax)jQuery筆記
- jquery ajax學習筆記jQuery筆記
- Ajax 學習手記 Jquery實現jQuery
- Jquery+Ajax+php學習筆記jQueryPHP筆記
- JQuery使用AJAXjQuery
- 學習去使用 Ajax
- AJAX的學習使用
- 學習AJAX必知必會(4)~JQuery傳送Ajax請求jQuery
- jquery ajax簡單使用jQuery
- jQuery學習筆記(2)jQuery筆記
- 學習jQuery延時2jQuery
- Ajax學習-Ajax簡介
- jQuery基礎學習(2)(效果)jQuery
- jQuery AjaxjQuery
- jQuery - AJAXjQuery
- Jquery 和 Ajax的 使用方法jQuery
- jQuery.ajax的使用方法jQuery
- Ajax學習_01
- AJAX學習1
- Ajax使用jQuery與後臺互動jQuery
- 使用jQuery 完成ajax 檔案下載jQuery
- jQuery.ajaxjQuery
- ajax +jquery 基本jQuery
- jQuery AJAX 方法jQuery
- jquery Ajax搭配jQuery
- jQuery.ajax()jQuery
- jQuery系列:AjaxjQuery
- Ajax學習(重點)
- Ajax學習總結
- AJAX學習筆記筆記
- struts2學習筆記–使用servletAPI實現ajax的一個小Demo筆記ServletAPI
- Jquery學習jQuery
- jQuery 使用ajax,並重新整理頁面jQuery
- jQuery裡如何使用ajax傳送請求jQuery
- jQuery的ajax和json使用例項jQueryJSON
- Web前端學習路線,超全面整理「HTML+CSS+JS+Ajax+jQuery+VUE」Web前端HTMLCSSJSjQueryVue
- Struts2+AJAX+JQuery 實現使用者登入與註冊功能。jQuery
- jQuery AJAX 簡介jQuery