0

我正在尝试在我的 HTML 页面中使用 js joda,以下是代码摘录:

    <html>
     <head>
      <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/js-joda/1.6.2/js-joda.js"></script>
      <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
     </head>
     <body>
       <button type="button" onclick="timeZoneFunction()">Show Time Zone</button>
      <script>
        function timeZoneFunction(){
          var dt = new LocalDateTime();
          var zdt = ZonedDateTime.now();
        }
      </script>
     </body>
   </html>

出于某种原因,我不断收到未定义 LocalDateTime 或 ZonedDateTime 的错误。我尝试将本地 javascript 放在 head 部分,但没有运气。想不出我哪里错了。请指点...

4

1 回答 1

0

在函数调用之前使用了命名空间 JSJoda,它似乎可以工作......

于 2017-11-06T07:38:50.493 回答