如何通过post发送请求,但页面不跳转过去?

WBOY
Release: 2016-06-23 14:17:32
Original
2402 people have browsed it

如题,我写了一个php文件,不过在向另一个页面发送post数据时,总是需要该页面跳转过去。
而这不是我想要的,怎么才能把请求发过去,页面又不会跳转呢?小弟新手,麻烦各位帮忙说一下解决方案,先谢谢各位了。


回复讨论(解决方案)

ajax 请求。

表单可以提交给一个隐藏的

Ajax是正解,百度搜下关键词!

楼主可以尝试使用jquery中的ajax方法,很简答。w3school中有实例。

通过客户端的js实现。

需要使用Ajax

可以学习一下 http://www.w3school.com.cn/ajax/
如果想省事可以使用jquery来实现ajax的效果
http://www.w3school.com.cn/jquery/jquery_ajax_get_post.asp

<script>var params = {id:1,name:'tom'};url = '/test_post.php';$.post(url,params,function(data){    alert(data);//这个data就是test_post.php返回的数据});</script>
Copy after login

记得要先引用下jquery,这个会的吧?呵呵,不会的话百度下

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template