是否有人在将C#dateFormat映射到datePicker dateFormat,因为我已经知道C#dateFormat,所以我不想每次必须构建自定义日期格式时都需要检查datepicker文档。

例如,我希望能够在我的助手dateFormat中指定“dd/MM/yy”(C#),并将其转换为“dd/mm/yy” DatePicker

最佳答案

一种可能的方法是直接将.NET格式说明符替换为其对应的jquery,如下面的代码所示:

public static string ConvertDateFormat(string format)
{
    string currentFormat = format;

    // Convert the date
    currentFormat = currentFormat.Replace("dddd", "DD");
    currentFormat = currentFormat.Replace("ddd", "D");

    // Convert month
    if (currentFormat.Contains("MMMM"))
    {
        currentFormat = currentFormat.Replace("MMMM", "MM");
    }
    else if (currentFormat.Contains("MMM"))
    {
        currentFormat = currentFormat.Replace("MMM", "M");
    }
    else if (currentFormat.Contains("MM"))
    {
        currentFormat = currentFormat.Replace("MM", "mm");
    }
    else
    {
        currentFormat = currentFormat.Replace("M", "m");
    }

    // Convert year
    currentFormat = currentFormat.Contains("yyyy") ? currentFormat.Replace("yyyy", "yy") : currentFormat.Replace("yy", "y");

    return currentFormat;
}

原始资料:http://rajeeshcv.com/2010/02/28/JQueryUI-Datepicker-in-ASP-Net-MVC/

09-27 12:08