在Ruby on Rails中的文本字段中设置提示文本

raj*_*hav 5 ruby-on-rails hint textfield

有人可以建议在Ruby on Rails中为文本字段设置提示文本(而不是默认文本)的最佳方法.目前我正在使用这个:

<%= text_field_with_auto_complete
  "customer", 
  :contact_person, { 
    :value => 'last, first',
    :style => 'color:#aaa;width:11em;', 
    :onfocus => "if(this.getValue()=='last, first'){this.clear();this.style.color = '#000';}",
    :onblur => "if(this.getValue()==''){this.setValue('last, first');this.style.color = #aaa';}" 
  } %>
Run Code Online (Sandbox Code Playgroud)

文本字段附加到模型,然后附加到数据库中的值.此外,index.html中使用的相同html也在edit.html中使用,因此当我尝试编辑该字段时,默认值显示而不是数据库中的值.这样做的正确方法是什么?

注意:我不是要设置默认值,而只是提示需要在文本框中输入的内容.

谢谢,

拉贾拉姆