10

我正在使用这个标记

<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 }; 

但是然后我如何添加/覆盖数据属性中的值..我只是不知道

4

1 回答 1

14

使用此标记(您必须像这样格式化“数据”属性,以便将它们识别为对象):

<label> Date <input type="text" data-datepicker='{"maxDate": "+1d"}' /></label>
<label> Another date <input type="text" data-datepicker='{ "dateFormat": "dd-mm-yy"}' /></label>

你可以这样做:

$('[data-datepicker]').each(function() {
    //standard options
    var options = { dateFormat: "yy-mm-dd"};   
    //additional options
     var additionalOptions = $(this).data("datepicker");
    //merge the additional options into the standard options and override defaults
    jQuery.extend(options, additionalOptions);


      $(this).datepicker(options);
});

在这里摆弄:http: //jsfiddle.net/WrRte/

于 2011-11-29T09:08:45.587 回答