我希望我的表单有一个占位符,如
请输入商店的地址
如何编辑下面的表单以使撇号起作用?
<%= text_area_tag 'store', '', class: 'form-control', placeholder: 'Please enter the store's address' %>
答案 0 :(得分:5)
你可以用反斜杠来逃避撇号:
<%= text_area_tag 'store', '', class: 'form-control', placeholder: 'Please enter the store\'s address' %>
或使用带引号的字符串文字:
<%= text_area_tag 'store', '', class: 'form-control', placeholder: "Please enter the store's address" %>