我从视图中选择结果并在模板中显示它们,
<% users.each(function(user){ %>
<tr>
<td class="center">
<label>
<input type="checkbox" class="ace" />
<span class="lbl"></span>
</label>
</td>
<td>
<%= user.get("first_name") %>
<% }); %>
如何将这个<%= user.get("first_name") %>
大写,就像在rails中使用titleize
方法的rails一样。
答案 0 :(得分:2)
CSS是一个选择吗? f.e。
td {
text-transform:capitalize;
}
答案 1 :(得分:0)
试试此代码
<%= user.get("first_name").titleize %>