ajax表单提交
我这里有这段代码
<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”中有一个小表单。我注意到它没有被发布。 如何在不破坏已有内容的情况下提交表格?
提前致谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在这里犯的错误是什么,我认为
您必须使用
$("#submit2")
来表示 id="submit2"并且必须使用
$(".submit2")
for class="submit2"另外从您的代码中删除
\'
并尝试Whats the mistake you are making over here I think is
you have to use
$("#submit2")
for id="submit2"and you have to use
$(".submit2")
for class="submit2"Also remove
\'
from your code and try看来您正在使用 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