Ajax表单提交刷新问题
我的网站中有一个用于设置的 ajax 表单。用户按下一个img,然后ajax脚本调用一个名为set.php的php文件。在此文件中,我有一个表单
如果用户更新了某些内容,那就可以了(我有 user.php 的元数据,尽管 ajax 表单已重置)。 但是,如果他按下按钮,那么他将被定向到文件 users/set.php(这真的很糟糕)
我想要一个关于如何解决这个问题的建议,如果我可以在不刷新页面的情况下发送查询(没有 jquery 谢谢),我想要一个关于如何解决这个问题的建议和另一个建议
谢谢
I have an ajax form for settings in my site. The user presses an img and then the ajax script calls a php file called set.php. In this file I have a form
<form method="post" action="users/set.php" enctype="multipart/form-data">
If the user updates something it is ok(I have meta to user.php, although the ajax form is reset).
However if he presses the button then he is directed to the file users/set.php(something really bad)
I want a suggestion on how to fix this and another one if I can send the queries without refreshing page(no jquery thank you)
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 JavaScript PreventDefault(),或者根本不使用
action
。You can use JavaScripts preventDefault(), or not have an
action
at all.