0

我正在尝试使用 jQuery 和用户脚本更改表数据值,但它不起作用。这是我的代码:

// ==UserScript==
// @name       My Fancy New Userscript
// @namespace  http://use.i.E.your.homepage/
// @version    0.1
// @description  enter something useful
// @copyright  2012+, You
// ==/UserScript==


// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
  var script = document.createElement("script");
  script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js");
  script.addEventListener('load', function() {
    var script = document.createElement("script");
    script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
    document.body.appendChild(script);
  }, false);
  document.body.appendChild(script);
}

// the guts of this userscript
function main() {
  // Note, jQ replaces $ to avoid conflicts.
 $('.last').html('111');
}

// load jQuery and execute the main function
addJQuery(main);

我究竟做错了什么?我在 Chrome 30.0.1599.69 上使用 Tampermonkey 扩展

4

1 回答 1

1

该代码的直接问题是$('.last').html('111');需要JQ('.last').html('111');

addJQuery()定义JQ,不在$内部main(),这不是addJQuery().


但是,更大的问题是在 Tampermonkey(或 Greasemonkey)上使用 jQuery 并不是一种聪明的方法。尽可能将您的脚本与页面代码隔离开来。

你的整个脚本应该是这样的:

// ==UserScript==
// @name     _YOUR_SCRIPT_NAME
// @include  http://YOUR_SERVER.COM/YOUR_PATH/*
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @version  0.1
// @grant    GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/
$('.last').html ('111');


确保将@include指令与您的目标页面相匹配。

于 2013-10-24T17:45:11.347 回答