如何在输入框后面插入提示信息?

时间:2015-06-13 05:36:50

标签: ruby-on-rails activeadmin

不是真正的问题,而是我需要的一些问题

是否可以在输入框后面附加html值?类似于输入框下面的小文字信息

我做过类似的事,但不是很漂亮。

f.inputs "Blog" do
  f.input :view_counts, :input_html => { :readonly => true }
  f.input :slug
  li raw("<label class='label'>&nbsp;</label><span class='text-info'>Your Slug will be automatically based on your title or you can choose to enter your own slug title</span>")
  f.input :title
  f.input :content, :as => :ckeditor
  f.input :is_active
  f.input :admin_user_id, as: :hidden, :input_html => { :value => current_admin_user.id }
end

代码介于:slug和:title之间。你会看到我想要做的草稿。感谢

2 个答案:

答案 0 :(得分:0)

您可以添加如下标签:

<label for="slug" class="hint">Your Slug will be automatically based on your title or you can choose to enter your own slug title</label>

然后添加css样式,如:

.hint {
    font-weight: normal;
    color: #777;
    font-size: .85em;
}

答案 1 :(得分:0)

感谢您的帮助,我找到了实现目标的方法。

f.input :slug, hint:"love u"

这将在输入框的正下方添加一个小草书。