我在多天选择时使用此插件。 http://dubrox.github.io/Multiple-Dates-Picker-for-jQuery-UI/
我需要在页面重新加载后保留选定的天数。我想可以用jquery cookie完成吗?我在单选日期选择器上找到了如何执行此操作: http://jsfiddle.net/arunatebel/h1qxv6nz/3/
但这不适用于多选。
我使用的代码是:
def find_rotation_coeffs(theta, x0, y0):
ct = cos(theta)
st = sin(theta)
return np.array([ct, -st, x0*(1-ct) + y0*st, st, ct, y0*(1-ct)-x0*st,0,0])
我试试这个,但这只保存了最后一个日期。
以下是代码:
$('#multi-date-pick').multiDatesPicker({
dateFormat: 'DD, d, m, y',
/* Run search */
onClose: function () {
$('.searchandfilter select.sf-input-select').trigger('change');
},
});/* End datepicker*/
我也试着这个来保存日期:`
$('#multi-date-pick').multiDatesPicker({
dateFormat: 'DD, d, m, y',
addDates: $.cookie('multi-date-pick'), //get the date after reload and init datepicker
onSelect: function(date) {
$.cookie('multi-date-pick', date); //store the date in cookies before submiting form
}
但是在添加日期时我得到了这个错误:
var date = $('#multi-date-pick').multiDatesPicker('getDates');
$.cookie('multi-date-pick', date);
在日期:,星期五,9日,6日,17日,星期六,10日,6日,17日发现未捕获的额外/未分析字符