我正在编写一个小的用户脚本,以从服务器获取一些内容并将其添加到关系中。
该网站具有jQuery,我该如何使用该网站的jQuery而不是@require
(因为Chrome现在不支持此功能)?
最佳答案
使用具有以下代码的jQuery现有副本:
function main () {
/*--- Put all of your code here.
Use jquery with $ or however the target page uses it.
*/
}
function addJS_Node (text, s_URL, funcToRun) {
var D = document;
var scriptNode = D.createElement ('script');
scriptNode.type = "text/javascript";
if (text) scriptNode.textContent = text;
if (s_URL) scriptNode.src = s_URL;
if (funcToRun) scriptNode.textContent = '(' + funcToRun.toString() + ')()';
var targ = D.getElementsByTagName ('head')[0] || D.body || D.documentElement;
targ.appendChild (scriptNode);
}
addJS_Node (null, null, main);