_comment_form.html.erb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. <% form_tag @article.comment_url do %>
  2. <div id='commentform'>
  3.   <h3><%= _("Comment")%> <em><%=@article.title%></em></h3>
  4.   <p class='comment'>
  5.     <%= text_field "comment", "author" %>
  6.     <label for="comment_author"><%= _("Your name")%></label>
  7.   </p>
  8.   <p class='comment'>
  9.     <%= text_field "comment", "email" %>
  10.     <label for="comment_email"><%= _("Email address")%></label>
  11.   </p>
  12.   <p class='comment'>
  13.     <%= text_field "comment", "url" %>
  14.     <label for="comment_url"><%= _("Your website")%></label>
  15.   </p>
  16.   <p class='body'>
  17.     <%= text_area 'comment', 'body' %>
  18.   </p>
  19.   <p class='comment_submit'>
  20.     <input type='image' id='form-submit-button' onclick='this.form.submit()' src='<%= image_path "theme/comment.jpg"%>' />
  21.   </p>
  22. </div>
  23. <% end %>