本文將介紹ajax jquery實(shí)例的使用方法。
首先,在頁面中引入jquery庫:
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
接下來,我們可以使用$.ajax()函數(shù)發(fā)送請求:
<script> $.ajax({ url: 'example.php', type: 'GET', dataType: 'json', success: function(response){ console.log(response); } }); </script>
上面的代碼發(fā)送了一個GET請求,url為example.php,dataType為json。請求成功后,控制臺會輸出響應(yīng)的數(shù)據(jù)。
如果需要發(fā)送POST請求,可以將type改為POST,并在data中添加需要發(fā)送的數(shù)據(jù):
<script> $.ajax({ url: 'example.php', type: 'POST', data: {name: '張三', age: 18}, success: function(response){ console.log(response); } }); </script>
這樣,就可以發(fā)送POST請求,并將{name: '張三', age: 18}作為請求的參數(shù)。
以上就是ajax jquery實(shí)例的使用方法,希望能對讀者有所幫助。
上一篇搜索框放大鏡css