(1)event.target
例:要素外をクリックすると内容は消えますが、クリックされた要素自体は消えません
(2)時間の計算
過去 1 時間は「xx 分前」として出力されます。過去 1 時間を超える場合は、該当する時刻が出力されます
Vue.filter("time", function(value) { var time; var minutes = timeErrand(value); if(minutes){ time = minutes+"分钟"; }else { var s = new Date(value); time = formatDate(s); } return time; });
function formatDate(now){ var year = now.getFullYear(), month = now.getMonth() + 1 >= 10 ? now.getMonth() + 1 : '0' + (now.getMonth() + 1), date = now.getDate() >= 10 ? now.getDate() : '0' + now.getDate(), hour= now.getHours(), minute = now.getMinutes(); return year + '.' + month + '.' + date; }
以上がイベント.ターゲットと時間の計算例の詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。