I have a strange situation happening on a page where my <form>
tags are being closed immediately, leaving the form's contents on their own and not useful.
Here's the basic ERB:
<%= form_for(@review) do |f| %>
<%= render 'apply/review_form', :locals => {:f => f} %>
<%= f.text_field :notes %>
<% end %>
Seems simple, right? I have tried the partial on its own; the text_field
on its own; a different version using form_tag
, but nothing works.
The HTML looks like this:
<div id="reviewContainer">
<form accept-charset="UTF-8" action="/reviews" class="new_review" id="new_review" method="post">
</form>
<div style="margin:0;padding:0;display:inline">
<input name="utf8" type="hidden" value="?">
<input name="authenticity_token" type="hidden" value="dJSuLMfhBSVKAM3Buwe1NjtBedSLQl062/+oliGbBfE=">
</div>
<input id="review_notes" name="review[notes]" size="30" type="text">
<div class="clear"></div>
</div>
Any ideas? It seems so simple I can't understand why it wouldn't be working!
Possibly helpful information
This form is not the only form on the page, and it is enclosed in a JQuery Tools Scrollable.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…