如何使用ajax制作php a href post值?
我想使用 a href
和 target_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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用ajax,页面永远不会刷新,您只需将数据发布到您的网络服务器,如果您想在ajax之后停止页面刷新,只需在ajax函数末尾添加以下内容(
假设您使用JQuery):
请显示一些代码,以便我们更好地理解你想要什么。
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
assuming you use JQuery:
And please show some code so we can batter understand what you want.