今天在 EMEDITOR 中的功能

TODAY FUNCTION IN EMEDITOR

请问如何将“今天的日期函数”添加到 Emeditor 的专栏中?类似于 Excel

您可以像这样使用 JavaScript 宏:

var today = new Date();
var dd = today.getDate();
var mm = today.getMonth() + 1;
var yyyy = today.getFullYear();
document.write( mm + '/' + dd + '/' + yyyy );