0
rails3のドロップダウン選択に基づいてテキストフィールドを表示/非表示する最適な方法は何ですか?rails3のドロップダウン選択に基づいてテキストフィールドを表示/非表示にする方法
はここにあなたがJavaScriptがブラウザで有効になっていると仮定すると、コードに
<label>Album </label>
<%= select_tag "album", options_for_select(@album_fields, params[:album])" %>
<!--ONLY DISPLAY the label and text_field if one of the selection IS SELECTED-->
<label>New Album Name: </label>
<%= text_field "new_album_name", params[:new_album_name], :id =>"albumname" %>
おかげ