jquery日期选择器中的语言翻译

时间:2013-08-27 12:31:29

标签: javascript jquery html

如何在jquery日期选择器中同时包含语言翻译和changeMonth以及changeYear选项。为此,我使用了以下代码 用于语言翻译

$(this).datepicker($.datepicker.regional['fr']);

对于ChangeYear

$( this ).datepicker({
      changeMonth: true,
      changeYear: true
    });

我想在一个datepicker框中运行这两个。请帮助

3 个答案:

答案 0 :(得分:4)

查看源代码区域是一个带选项的对象,所以这应该有效:

$(this).datepicker($.extend({}, $.datepicker.regional['fr'], {
  changeMonth: true,
  changeYear: true
}));

答案 1 :(得分:0)

这是一个简单的方法(见这个JFiddle:http://jsfiddle.net/Kp8Nq/)。 您可以更改本地化选项,而不是创建新的日期选择器:

$(function () {
    $("#datepicker").datepicker({
      changeMonth: true,
      changeYear: true
    });
     $("#datepicker").datepicker("option",
        $.datepicker.regional["fr"]);

    $("#locale").change(function () {
        $("#datepicker").datepicker("option",
        $.datepicker.regional[$(this).val()]);
    });
});

答案 2 :(得分:0)

如果您有多国网站,我个人会让用户决定:

请参阅:http://jqueryui.com/datepicker/#localization

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Datepicker - Localize calendar</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
  <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
  <script src="jquery.ui.datepicker-ar.js"></script>
  <script src="jquery.ui.datepicker-fr.js"></script>
  <script src="jquery.ui.datepicker-he.js"></script>
  <script src="jquery.ui.datepicker-zh-TW.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <script>
  $(function() {
    $( "#datepicker" ).datepicker( $.datepicker.regional[ "fr" ] );
    $( "#locale" ).change(function() {
      $( "#datepicker" ).datepicker( "option",
        $.datepicker.regional[ $( this ).val() ] );
    });
  });
  </script>
</head>
<body>

<p>Date: <input type="text" id="datepicker" />&nbsp;
  <select id="locale">
    <option value="ar">Arabic (‫(العربية</option>
    <option value="zh-TW">Chinese Traditional (繁體中文)</option>
    <option value="">English</option>
    <option value="fr" selected="selected">French (Français)</option>
    <option value="he">Hebrew (‫(עברית</option>
  </select></p>


</body>
</html>