jquery中get和post的简单实例
例子:
test.html
页面引用<script type="text/javascript" src="jquery-1.3.2.min.js"></script>
内容有:
<div id="divMsg">Hello World!</div>
用法1:(页面载入时读取远程页面内容到divMsg)
$("#divMsg").load(http://localhost:8012/t.php, { "resultType": "html" });
返回类型resultType有如下几种:
"xml", "html", "script", "json", "jsonp", "text"
用法2:(点击post数据返回数据)
<input type="button" id="bnajax" value="ajax" onclick="ajaxTest()" />
<script type="text/javascript" >
function ajaxTest()
{
$.post("http://localhost:8012/t.php", { "txt": "123" },function(data)
{
$("#divMsg").html(data);
}
);
}
</script>
下面是摘自网络的函数:
post方法如下:
function test(access_url, tipE){
$.post(access_url,{
first: "test1", second: "test2"
}, function(data){
if(data.success){
$('#' + tipE).html('处理成功');
}else{
$('#' + tipE).html(data.msg);
}
},'json'
)
}
如果想用get方法,则把post换为get就可以了,挺简单!
这个函数中data值为服务端返回的值,且为JSON格式,当然了,这里可以用其他类型,如text,xml等等之类。
服务端返回值是JSON格式,如:{success:true, msg:"测试成功"}
- jQuery中get和post方法传值测试及注意事项
- Jquery Post处理后不进入回调的原因及解决方法
- JQuery中Ajax的Post提交在IE下中文乱码的解决方法
- jQuery的3种请求方式$.post,$.get,$.getJSON
- javasciprt下jquery函数$.post执行无响应的解决方法
- jquery.post用法之type设置问题
- jquery中get,post和ajax方法的使用小结
- jquery中$.post()方法的简单实例
- jquery.post用法关于type设置问题补充
- jquery.post用法示例代码
- Jquery AJAX POST与GET之间的区别
- Jquery中$.get(),$.post(),$.ajax(),$.getJSON()的用法总结
- jquery ajax post提交数据乱码
- jQuery调用AJAX时Get和post公用的乱码解决方法实例说明
- jquery中post方法用法实例
相关文章
使用Jquery Aajx访问WCF服务(GET、POST、PUT、DELETE)
使用Jquery Aajx访问WCF服务(GET、POST、PUT、DELETE),需要的朋友可以参考下2012-03-03append和appendTo的区别以及appendChild用法
很多新手朋友们对append和appendTo的区别以及js中的appendChild用法有所模糊,下面就举例为大家详细介绍下,感兴趣的朋友不要错过2013-12-12
最新评论