我有大城市名称的按钮。
单击它们,我想在它们中获取当地时间。
$('#btnToronto').click(function () {
var hours = new Date().getHours();
var hours = hours-2; //this is the distance from my local time
alert ('Toronto time: ' + hours + ' h'); //this works correctly
});
但是我怎样才能得到 AM 或 PM 呢?