gpt4 book ai didi

jquery - 如何(重新)绑定(bind)以在 .load(ed) 表单上提交按钮/表单

转载 作者:行者123 更新时间:2023-12-01 04:30:07 25 4
gpt4 key购买 nike

在学习如何实现不显眼的 js(使用 Rails 和 jQuery)的早期阶段,我遇到了如何在 .load(ing) 包含表单的新内容之后(重新)绑定(bind)提交按钮/表单的问题。

我设置了一个“创建新项目”表单,以显示在项目列表的顶部(当用户单击创建按钮时)

sale_case/show/_requirments_new.html.haml:

- form_for ([@sale_case, @sale_case_requirement]), :html => { :id => 'requirement_form', :class => "submit-with-ajax"} do |f|
...
%button{ :type => "submit" } Save Requirement

application.js:

jQuery(document).ready(function() {
jQuery(".submit-with-ajax").submitWithAjax();
}
...
jQuery.ajaxSetup({
'beforeSend': function(xhr) {xhr.setRequestHeader("Accept", "text/javascript")}
})

jQuery.fn.submitWithAjax = function() {
this.submit(function() {
jQuery.post(this.action, jQuery(this).serialize(), null, "script");
return false;
})
return this;
};

requirements_controller.rb:

def create
@sale_case_requirement = @sale_case.requirements.new(params[:requirement])
if @sale_case_requirement.save
@message = "Success..."
@success = true
#...
respond_to do |format|
format.js
end
end

需求/create.js.erb:

mesg("<%= @message %>");
<%- if @success %>
jQuery("#requirement_form")[0].reset();
jQuery('#requirements').load('<%= requirements_view_sale_case_requirements_path(@sale_case.id) %>' );
<% end %>

第一次一切都运行良好,不引人注意。当用户创建第二个项目(在通过 ajax 加载的表单上)时,问题就出现了。该按钮未绑定(bind)到 SubmitWithAjax 函数。 .load(ing) 内容时如何做到这一点?

为了让它工作,我最终不得不在部分(强制)中执行此操作,但它让我无法弄清楚这一点。 :

%button{ :type => "submit", :onclick => "jQuery.post('#{sale_case_requirements_path(@sale_case.id, @sale_case_requirement.id)}', jQuery('#requirement_form').serialize(), null, 'script'); return false;"} Save Requirement

最佳答案

以下是我根据 Ender 的输入最终对代码进行的更改。我在用他的代码版本查找“submitWithAjax”时出错,但他给我指出了正确的方向,在阅读 .live 文档后,我想出了这个有效的方法:

application.js

jQuery(document).ready(function() {

# Just put it all in one place
jQuery(".submit-with-ajax").live('submit', function() {
jQuery.post(this.action, jQuery(this).serialize(), null, "script");
return false;
});
...
}

sale_case/show/_requirments_new.html.haml:

# Change the button back to unobtrusive
%button{ :type => "submit"} Save Requirement

谢谢!

关于jquery - 如何(重新)绑定(bind)以在 .load(ed) 表单上提交按钮/表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3399252/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com