Rumah > Artikel > hujung hadapan web > jquery如何实现ajax技术3:$.get()
今天要向大家介绍的是jQuery中的$.get()。它同样能够让我们以非常少的代码量完成网站开发中的ajax需求。
$.get()函数的参数和我们在《jquery如何实现ajax技术2:$.post()》中介绍的$.post()参数相同。具体如下:
$.get(url,data,callback,type)
url---待载入页面的 URL 地址。
data---待发送 Key / value 参数。
callback---载入成功时回调函数。
type---返回内容格式,xml, html, script, json, text, _default。
下面举一个实际例子:
===============================================================
ajax.html
$(document).ready(function(){
$('#bot_1').click(function(){
$.get('ajax.php',{web:"mysql100"},function(data,st){$("div").html(data);})
})
})
===============================================================
ajax.php
echo '您要访问的网站是'.$_GET['web'];
?>
以上就是jquery如何实现ajax技术3:$.get()的内容,更多相关内容请关注PHP中文网(www.php.cn)!