Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 jquery 刷新页面后,来自 text_box 的值是空白的。有什么建议吗???
您可以使用本地存储或会话存储 或cookie在客户端存储值,刷新后值将可用。
使用本地存储
在使用 Web 存储之前,请检查浏览器对 localStorage 和 sessionStorage 的支持:
if(typeof(Storage)!=="undefined") { localStorage.lastname="Smith"; } else { // Sorry! No web storage support.. }
我不确定我是否完全理解您的问题,但我想您想要以下内容
<%= text_field_tag 'name', params[:some_param] ? params[:some_param] : nil %>
如果您有一些变量(例如@instance_variable)并且您希望该值进入文本字段,请使用以下
<%= text_field_tag 'name', @instance_variable ? @instance_variable : nil %>
参考text_field_tag
text_field_tag