是否可以将日期值从datepicker转换为单词?,我知道这里有几个类似的问题,但是我想采用其他方法。
现在,我正在尝试使用警报来在更改为单词之前找出变量的值,然后在数组中存在有关索引号的错误消息。它说:uckulting语法:这是意外的数字 BULAN 1 JANUARI
是否有任何建议,可以为数组中的密钥赋予价值吗?
$( function() {
$( "#pickyDate" ).datepicker({format: "dd/mm/yyyy"});
local = ['Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jumat', 'Sabtu' ];
bulan = [1=>'Januari', 'Februari', 'Maret', 'April', 'Mei', 'Juni','Juli','Agustus','September','Oktober','November','Desember' ];
$('#getdate').datepicker()
.on("change", function () {
var today = new Date($('#getdate').datepicker('getDate'));
var tanggal = today.getDate();
var no_hari = today.getDay();
var no_bulan = today.getMonth()+1;
var tahun = today.getFullYear();
//alert(local[today.getDay()]);
alert(tahun);
//$('#wordsdate').val(local[today.getDay()]);
});
});
<link href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.js"></script>
<div class="form-group">
<input type="text" class="form-control" placeholder="choose date" id="getdate" />
</div>
<div class="form-group">
<input type="hidden" class="form-control" placeholder="datepicker date" id="datenum" disabled/>
</div>
<div class="form-group">
<input type="text" class="form-control" placeholder="wordsdate" id="wordsdate" disabled/>
</div>
示例:
假设我们选择一个日期:05/06/2014
然后在Textfield上产生:6月5日两千和14
您可以使用jQuery Date Picker获得这种方式,您可以选择下拉菜单中的最后一个选项
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Format date</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker();
$( "#format" ).on( "change", function() {
$( "#datepicker" ).datepicker( "option", "dateFormat", $( this ).val() );
});
} );
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker" size="30"></p>
<p>Format options:<br>
<select id="format">
<option value="mm/dd/yy">Default - mm/dd/yy</option>
<option value="yy-mm-dd">ISO 8601 - yy-mm-dd</option>
<option value="d M, y">Short - d M, y</option>
<option value="d MM, y">Medium - d MM, y</option>
<option value="DD, d MM, yy">Full - DD, d MM, yy</option>
<option value="'day' d 'of' MM 'in the year' yy">With text - 'day' d 'of' MM 'in the year' yy</option>
</select>
</p>
</body>
</html>
使用大写字母。
您已经写了DD/mm/yyyy,而是写DD/mm/yyyy