如何在 rails 中的 text_area_tag 中插入占位符文本?
How to insert placeholder text in text_area_tag in rails?
我正在使用以下代码生成 textarea
标签:
<%= text_area_tag :comment, '', autocomplete: "off", class: "form-control", placeholder: "Your Comment" %>
呈现时,它会产生以下内容 HTML:
<textarea name="comment" id="comment" autocomplete="off" class="form-control" placeholder="Your Comment"></textarea>
我知道如果 <textarea>
和 </textarea>
之间有一些文本,placeholder
将不会显示,但就我而言,中间没有任何内容,从渲染中可以清楚地看出 HTML。那么如何为 textarea
添加 placeholder
文本?
html 似乎对我有效。
<textarea name="comment" autocomplete="off" class="test" id="moretest" data-value="moretest" placeholder="snowman or iceman?"></textarea>
我正在使用以下代码生成 textarea
标签:
<%= text_area_tag :comment, '', autocomplete: "off", class: "form-control", placeholder: "Your Comment" %>
呈现时,它会产生以下内容 HTML:
<textarea name="comment" id="comment" autocomplete="off" class="form-control" placeholder="Your Comment"></textarea>
我知道如果 <textarea>
和 </textarea>
之间有一些文本,placeholder
将不会显示,但就我而言,中间没有任何内容,从渲染中可以清楚地看出 HTML。那么如何为 textarea
添加 placeholder
文本?
html 似乎对我有效。
<textarea name="comment" autocomplete="off" class="test" id="moretest" data-value="moretest" placeholder="snowman or iceman?"></textarea>