私は次のform
ように設計されたを持っています
= form_for :url => @question do |f|
%table
%thead
%td
= f.label :ques
%tr
= select_tag
オプション %tbody#questions
私のコントローラーには
def new
@question = Question.new
respond_to do |format|
format.html
format.js
end
end
new.html.haml で
:javascript
$('select').change(function() {
$.ajax({
url: window.location.href
});
});
上記のコーディングのどこが間違っていますか? このページが js 形式でレンダリングされないのはなぜですか?