javascriptで日付をYYYY年MM月DD日表示になるよう指定していますが、safariのみNaN年aN月aN日になってしまいます。(Chrome、firefoxは問題なく表示されます。)
いろいろ試してみましたがどうしても直りません。
何か方法ありますでしょうか?
コード記載します。
function formatDate(date, format) {
if (!format) format = 'YYYY-MM-DD hh:mm:ss.SSS';
format = format.replace(/YYYY/g, date.getFullYear());
format = format.replace(/MM/g, ('0' + (date.getMonth() + 1)).slice(-2));
format = format.replace(/DD/g, ('0' + date.getDate()).slice(-2));
format = format.replace(/hh/g, ('0' + date.getHours()).slice(-2));
format = format.replace(/mm/g, ('0' + date.getMinutes()).slice(-2));
format = format.replace(/ss/g, ('0' + date.getSeconds()).slice(-2));
if (format.match(/S/g)) {
var milliSeconds = ('00' + date.getMilliseconds()).slice(-3);
var length = format.match(/S/g).length;
for (var i = 0; i < length; i++) format = format.replace(/S/, milliSeconds.substring(i, i + 1));
}
return format;
}
_createListItemView: function (post) {
var $item = this.$listItemTpl.clone();
$item.find('.type .value').empty().text(post.news_type);
$item.find('.title').empty().text(post.title);
$item.find('.date').empty().text(formatDate(new Date(post.post_date), 'YYYY年MM月DD日'));
$item.find('.newsLink').attr('href', post.url);
return $item.get(0);
},
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/05/04 08:36