function GetDateFormat(value) {

            var str = value.toString().replace(/-/g, "/");

            //var times = Date.parse(str);

            var times = new Date(str);

            return times.getHours().toString() + ";" + times.getMinutes().toString();

        }

相关文章:

  • 2021-12-12
  • 2022-12-23
猜你喜欢
  • 2021-07-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
相关资源
相似解决方案