获取当前时间,日期格式function currentDate() { var date = new Date(); var y = date.getFullYear(); var m = date.getMonth() + 1; // m = m < 10 ? ('0' + m) : m; var d = date.getDate(); // d = d < 10 ? ('0' + d) : d; var h = date.getHours(); // h = h < 10 ? ('0
VS2012载入DLL编译出现试图载入格式不对的程序:以及执行出现Mixed mode assembly is built against version 'v2.0.50727' of theruntime and cannot be loaded in the 4.0 runtime without additionalconfiguration information 转载请注明出处:http://blog.csdn.net/aaa123524457/article/details/478
/** * Created by Administrator on 2019/11/15. *指尖敲打着世界 ----一个阳光而又不失帅气的少年!!!. */ // js获取当前时间,并格式化为"yyyy-MM-dd HH:mm:ss" function getFormatDate() { var date = new Date(); var month = date.getMonth() + 1; var strDate = date.getDate(); if (month >