我正在尝试在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
我不应该做类似的事情吗?