在Tamparmonkey中使用momentJs:未定义力矩

时间:2019-07-30 09:55:20

标签: tampermonkey

我正在尝试在momentJs中使用tampermonkey,但出现错误:"moment is not defiend"

我的代码:

// ==UserScript==
// @name         xxx
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://example.com/*
// @grant        none
// @require      http://code.jquery.com/jquery-3.4.1.min.js
// @require      https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.2/moment.js

// ==/UserScript==

(function() {
    'use strict';
     var $ = window.jQuery;       
   $('.cDM').each(function(){
       var time = ($(this).html());
       console.log(moment(time,"HH:mm", true).isValid());  // >> moment is not defined     
   })
})();

要使用jquery,我需要声明:

var $ = window.jQuery

我不应该做类似的事情吗?

0 个答案:

没有答案