我有几个rails link_to帮助程序打开模式窗口工作正常但是我还需要使用选择框来选择状态和更改选择我需要打开链接,具体取决于选择的状态值。
我的链接示例
<%= link_to "Fact Find", fact_find_email_path(@opportunity.contacts.first.id), {:remote => true, 'data-toggle' => "modal", 'data-target' => '#fact_find'} %>
我到目前为止的jquery脚本
$('#status').change( function() {
//some if statement to eval selection e.g if #status == 'Fact Find'
// Then open the link as above
});
答案 0 :(得分:1)
这样的事情可能会帮助你交配.. :)
$('#status').change(function () {
if ($(this).val() == "someValue") {
$("#link_id").trigger("click");
}
});
<强> FYI 强>