我在我的 ASP.NET 应用程序中使用 jquery datepicker,如果用户来自西班牙或德国,我想使用其他日期格式。
这是我的jQuery代码:
$(function () {
$("#txtAbwesenheitBis").datepicker();
$("#format").change(function () {
$("#txtAbwesenheitBis").datepicker("option", "dateFormat", $(this).val());
});
});
我如何使用其他日期格式?或者我如何使用德语日期格式?