我在 Rails 应用程序中使用 Datebox(timebox mode) jquerymobile 插件来选择几个小时。我正在尝试使用 defaultPickerValue 设置默认值,但我不知道如何添加它。
我只能找到有关它的文档 http://dev.jtsage.com/jQM-DateBox1/demos/api/matrix.html#&ui-page=1-2
我已经尝试了很多这样的变化:
<%= builder.text_field :start_time, "data-role" => "datebox", "data-options" => '{"mode": "timebox", "minuteStep": 15, "defaultPickerValue": "[12,0]" }' %>
和
<%= builder.text_field :end_time, "data-role" => "datebox", "defaultPickerValue" => "[12,0]", "data-options" => '{"mode": "timebox", "minuteStep":15 }'%>
是否只能在加载时通过脚本设置?