jQuery:提交并保留在同一页面中

编程入门 行业动态 更新时间:2024-10-26 18:21:24
本文介绍了jQuery:提交并保留在同一页面中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

提交表单后是否可以将文本框中的值保留下来,并使用jQuery ajax保留在同一页面上?

Is it possible to remain the values in textbox after submited the form and remain the same page using jQuery ajax?

很抱歉,我没有示例来演示.

I'm sorry that I don't have examples to demonstrate.

谢谢.

推荐答案

在您的提交回调中,您可以preventDefault提交事件.然后,您只需使用ajax自己处理它即可.

In your submit callback you could preventDefault the submit event. You would then just handling it by yourself with ajax.

$('#yourform').submit(function(event) { event.preventDefault(); // disable default submit behaviour of the browser $.post($(this).attr('action'), $(this).serialize()); // handle the post via ajax });

<form id="yourform" action="script.php"> <input type="text" name="field"> <input type="submit" value"Go"> </form>

更多推荐

jQuery:提交并保留在同一页面中

本文发布于:2023-11-24 21:27:47,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1626907.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:页面   在同一   jQuery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!