如何使用ajax制作php a href post值?

发布于 2024-10-06 01:10:59 字数 330 浏览 3 评论 0原文

我想使用 a hreftarget_self 来发布一个值,但我不想在发布时刷新页面。如何添加ajax功能?

<form name="info" id="info" method="post" action="index.php" >
<input name="name" type="hidden" value="test" /><br />
<a href="javascript:document.name.submit()">test</a>
<form>

I want to post a value using a href with target_self, but I do not want to refresh the page when it posts. How to add a ajax function?

<form name="info" id="info" method="post" action="index.php" >
<input name="name" type="hidden" value="test" /><br />
<a href="javascript:document.name.submit()">test</a>
<form>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

糖果控 2024-10-13 01:10:59

使用ajax,页面永远不会刷新,您只需将数据发布到您的网络服务器,如果您想在ajax之后停止页面刷新,只需在ajax函数末尾添加以下内容(

return false;

假设您使用JQuery):

   $("form").submit(function(){

      $.ajax(); // Which needs some other stuff for making it useful
return false; //This will stop the page from refresh !
});

请显示一些代码,以便我们更好地理解你想要什么。

With ajax the page is never refreshed, you will just POST data to your webserver, if you want to stop page refresh after ajax just add this at the end of ajax function

return false;

assuming you use JQuery:

   $("form").submit(function(){

      $.ajax(); // Which needs some other stuff for making it useful
return false; //This will stop the page from refresh !
});

And please show some code so we can batter understand what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文