js进阶 14-4 $.get()方法和$.post()方法如何使用
一、总结 一句话总结:$.get(URL,callback); $.post(URL,data,callback); callback函数和load()方法里面的callback一样。 1、load方法和$.get()以及$.post()方法的区别是什么(load也可以实现ajax的post和get请求)? load方法是局部变量,前面需要加上监听对象,监听对象就是返回结果放置的元素$.get()以及$.post()时全局方法,不必加上监听对象 20 // $(‘#test’).load(‘test.php?password=1234560’) 40 $.get(‘testGet.php’,{password:’123456′},function(responseTxt,statusTxt){ 41 // alert(responseTxt) 42 $(‘#test’).html(‘responseTxt:’+responseTxt+'<br/>’+’status: ‘+statusTxt) 43 }) 2、$.get()提交数据四种方法? a、url中?接参数 b、字符串(jquery1.3之后支持) […]