在 Ruby on Rails 中,我尝试innerHTML
使用帮助程序更新 div 标记form_remote_tag
。每当关联的选择标记接收到 onchange 事件时,就会发生此更新。问题是,<select onchange="this.form.submit();">
; 不起作用。也没有document.forms[0].submit()
。让form_remote_tag中生成的onsubmit代码执行的唯一方法是创建一个隐藏的提交按钮,并从select标签调用按钮上的click方法。这是一个有效的 ERb 部分示例。
<% form_remote_tag :url => product_path, :update => 'content', :method => 'get' do -%>
<% content_tag :div, :id => 'content' do -%>
<%= select_tag :update, options_for_select([["foo", 1], ["bar", 2]]), :onchange => "this.form.commit.click" %>
<%= submit_tag 'submit_button', :style => "display: none" %>
<% end %>
<% end %>
我想要做的是这样的事情,但它不起作用。
<% form_remote_tag :url => product_path, :update => 'content', :method => 'get' do -%>
<% content_tag :div, :id => 'content' do -%>
# the following line does not work
<%= select_tag :update, options_for_select([["foo", 1], ["bar", 2]]), :onchange => "this.form.onsubmit()" %>
<% end %>
<% end %>
那么,有没有办法删除这个用例的不可见提交按钮?
似乎有些混乱。所以,让我解释一下。基本问题是submit()
不调用onsubmit()
呈现到表单中的代码。
Rails 从此 ERb 呈现的实际 HTML 表单如下所示:
<form action="/products/1" method="post" onsubmit="new Ajax.Updater('content', '/products/1', {asynchronous:true, evalScripts:true, method:'get', parameters:Form.serialize(this)}); return false;">
<div style="margin:0;padding:0">
<input name="authenticity_token" type="hidden" value="4eacf78eb87e9262a0b631a8a6e417e9a5957cab" />
</div>
<div id="content">
<select id="update" name="update" onchange="this.form.commit.click">
<option value="1">foo</option>
<option value="2">bar</option>
</select>
<input name="commit" style="display: none" type="submit" value="submit_button" />
</div>
</form>
我想取消不可见的提交按钮,但使用直接的 form.submit 似乎不起作用。所以,我需要一些方法来调用表单的 onsubmit 事件代码。
return(false);
更新:如果Rails没有生成,Orion Edwards 解决方案将起作用。我不确定哪个更糟,向不可见的提交按钮发送幻像点击或在getAttribute('onsubmit')
使用 javascript 字符串替换删除返回调用后调用 eval !