ajax表单提交

发布于 2024-10-12 01:08:46 字数 804 浏览 3 评论 0 原文

我这里有这段代码

<script>
function req() {
  $("div.formbut").hide("slow");  
  $("div.inqform").show("slow");  
var targetOffset = $(\'div.inqform\').offset().top; $(\'html,body\').animate({scrollTop: targetOffset}, 1000);   
  }
$("submit2").click(req);
$("form").submit(function () {
  if ($("input").val() == "yes") {
    $("p").show(4000, function () {
      $(this).text("Ok, loaded! (now showing)");
   });
  }
  $("div.rates").hide("slow");
  $("div.ratesbut").hide("slow");  
  $("div.inqform").hide("slow");
  $("div.done").show("slow");
var targetOffset = $(\'div.done\').offset().top; $(\'html,body\').animate({scrollTop: targetOffset}, 1000);     
  return false; 
});
</script>

,“div.inqform”中有一个小表单。我注意到它没有被发布。 如何在不破坏已有内容的情况下提交表格?

提前致谢。

I have this piece of code here

<script>
function req() {
  $("div.formbut").hide("slow");  
  $("div.inqform").show("slow");  
var targetOffset = $(\'div.inqform\').offset().top; $(\'html,body\').animate({scrollTop: targetOffset}, 1000);   
  }
$("submit2").click(req);
$("form").submit(function () {
  if ($("input").val() == "yes") {
    $("p").show(4000, function () {
      $(this).text("Ok, loaded! (now showing)");
   });
  }
  $("div.rates").hide("slow");
  $("div.ratesbut").hide("slow");  
  $("div.inqform").hide("slow");
  $("div.done").show("slow");
var targetOffset = $(\'div.done\').offset().top; $(\'html,body\').animate({scrollTop: targetOffset}, 1000);     
  return false; 
});
</script>

the "div.inqform" has a small form in it. I noticed that it does not get posted.
How can I get the form submitted without ruining what I have already ?

Thanks in advance.

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

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

发布评论

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

评论(2

好多鱼好多余 2024-10-19 01:08:46

您在这里犯的错误是什么,我认为

$("submit2").click(req);  // change this to $("#submit2").click(req);
$("form").submit(function () { // change this to $("#form").submit(function () {

您必须使用 $("#submit2") 来表示 id="submit2"

并且必须使用 $(".submit2") for class="submit2"

另外从您的代码中删除 \' 并尝试

Whats the mistake you are making over here I think is

$("submit2").click(req);  // change this to $("#submit2").click(req);
$("form").submit(function () { // change this to $("#form").submit(function () {

you have to use $("#submit2") for id="submit2"

and you have to use $(".submit2") for class="submit2"

Also remove \' from your code and try

波浪屿的海角声 2024-10-19 01:08:46

看来您正在使用 Prototype。有一个 form.request 方法可用,您可以使用它通过 ajax 提交表单并获取响应文本。

然而,您的表单看起来是通过 ajax 加载的,然后插入到 dom 中。所以你可能会遇到这里已经处理过的一些麻烦。您还可以从此问题和答案中获取必要的代码:

无法访问之前由innerHTML 使用Javascript/Prototype 创建的元素

Well it looks like you are using Prototype. There is a form.request method available that you acn use to submit a form over ajax and get the response text.

Your form however looks to beloaded via ajax and then inserted into the dom. So you may run into some troubles that have been dealed with here. You can also get the codes necessary from this question and answer:

Can't access Elements previously created by innerHTML with Javascript/Prototype

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