HTMLコードを返しjQueryのは.text()メソッドは空の文字列
$(document).ready(function() {
function updatedDate() {
var testDateUtc = moment.utc();
var local = moment(testDateUtc).local();
var updatedTime = moment(local).format("MM/DD/YYYY h:mm A");
console.log('updated: ', updatedTime); // log: "updated: 12/20/2016 11:44 AM"
$('#updatedTime_SalesTab').text(updatedTime);
}
updatedDate();
});
をしかし、私は唯一の時計アイコンを持って、スパンは空です。私のコードに何が問題なのですか?
コードがうまくいくように見えます...あなたのコンソールウィンドウでエラーをチェックしましたか? –
ここにjsfiddleがあり、うまくいきます:https://jsfiddle.net/FLhpq/7410/ –
プラグインを含むことを忘れましたか? –