我正在使用这个标记
<label> Date <input type="text" data-datepicker="{maxDate: '+1d'}" /></label>
<label> Another date <input type="text" data-datepicker="" /></label>
<script>
$('[data-datepicker]').each(function() {
// init the options var with some default values (dateFormat etc)
// that can be overridden by the data-datepicker values
// also, new values can be added to the options from data-datepicker
// such as in the above example "maxDate"
var options = TODO;
$(this).datepicker(options);
});
</script>
我真的不知道从哪里开始使用该选项对象。从默认值开始似乎是一个好的开始
var options = { dateFormat: 'yy-mm-dd };
但是然后我如何添加/覆盖数据属性中的值..我只是不知道