可能像这样的一些人会帮助你从这件事开始。<html><body><h4>Date to Convert: <i>2020/07/28-19:39:45</i> </h4> <button onclick="switchGMT()">Convert to GMT</button><p id="myDate"></p><script>const switchGMT =()=> { let myDate = new Date('2020/07/28-19:39:45'); let convertedDate = myDate.toUTCString(); document.getElementById("myDate").innerHTML = convertedDate;}</script></body></html>