javascript-仅在Tampermonkey中导入库(通过@require)时出错

前端之家收集整理的这篇文章主要介绍了javascript-仅在Tampermonkey中导入库(通过@require)时出错 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想在我的Tampermonkey脚本中导入dragtable.js,但出现此错误(jQuery已在我的网站中):

[Error] ERROR: Execution of script ‘DragTable’ Failed! undefined is
not a function (near ‘…$.widget…’) error (anonymous function)
(userscript.html:2:186) … …

这是我的脚本:

// ==UserScript==
// @name         DragTable
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://localhost:9010/*
// @require https://rawgit.com/akottr/dragtable/master/jquery.dragtable.js

// @grant        none
// ==/UserScript==

如何导入而不会出现错误? ks

最佳答案
参见dragtable‘s ReadMe,该库需要jQuery和jQuery UI.

从列出的错误看来,jQuery UI似乎不存在.

因此,您的脚本至少应为:

// ==UserScript==
// @name        DragTable,getting started
// @match       http://localhost:9010/*
// @require     http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js
// @require     https://rawgit.com/akottr/dragtable/master/jquery.dragtable.js
// @grant        none
// ==/UserScript==

但是,请参见this other Q&A for a more details about jQuery UI in a userscript.

原文链接:https://www.f2er.com/js/531274.html

猜你在找的JavaScript相关文章