$.ajax({
type: "Get",
contentType: "application/json",
data: { sorted_ids: sortedId, sorted_row_ids: sortedRowId,
sorted_col_ids: sortedColId},
url: "/inventory/drag",
dataType: "json",
success: function(data) {
alert("sucess");
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("unsucessful");
}
});
<%= button_to "save","#",:title => "save",:id => "save_button" %>
ボタンをクリックするとアラートが表示されますが、ajax 呼び出しがトリガーされません。誰でも私を助けることができますか?