JQuery Datepicker Localization German

后端 未结 6 2355
醉酒成梦
醉酒成梦 2020-12-18 22:50

First off, I want to state, that I\'ve read a lot of threads on this Topic but none solved my Problem.

So I need a german JQuery Datepicker. So I set th

6条回答
  •  一整个雨季
    2020-12-18 23:08

    Eclose the "$.datepicker.setDefaults" call within:

    jQuery(function ($) { initialization; });
    

    Final result:

    jQuery(function ($) {
        $.datepicker.setDefaults($.datepicker.regional["de"]);
    });
    

提交回复
热议问题