jQuery.get(url,[data],[callback]) 或 $.get
jQuery.post(url,[data],[callback]) 或 $.post
参数说明:
url:请求的url页面
[data]:发送Ajax时传递的参数,要求格式为json对象,如果没有可以不写,直接写第三个参数即可
[callback]:当Ajax状态码为4且响应状态码为200时所触发的回调函数
<!DOCTYPE html> <html> <head> <meta charset=""> <title></title> <script src="js/jquery.js"></script> <script> $(function(){ $(‘#btnok‘).bind(‘click‘,function(){ //发送ajax请求 $.get(‘ajax4.php‘,function(msg){ alert(msg); }); }); }); </script> </head> <body> <input type="button" id="btnok" value="OK" /> </body> </html>
PHP代码如下:
<?php echo "Ajax jQuery";
在此运行以上代码,发现存在缓存行问题,可以通过以下方法进行决解
<!DOCTYPE html> <html> <head> <meta charset=""> <title></title> <script src="js/jquery.js"></script> <script> $(function(){ $(‘#btnok‘).bind(‘click‘,function(){ //发送ajax请求 var data = { _:new Date().getTime() //t通过这种方法可以解决缓存问题 }; $.get(‘ajax4.php‘,data,function(msg){ alert(msg); }); }); }); </script> </head> <body> <input type="button" id="btnok" value="OK" /> </body> </html>
时间: 2024-11-05 15:48:51