即使我的用户脚本仅限于一个域,但当我的脚本处于活动状态时,我访问的任何使用 Jquery 的站点都会遇到各种令人讨厌的问题。检查 chrome 中的错误控制台会在所有站点上显示相同的错误:
“未捕获的类型错误:对象 [对象窗口] 的属性 '$'”
这是什么原因造成的?我的目标是让我的用户脚本在使用 jquery 和原型的网站上以无冲突模式运行。我没有制作上面的代码var = myFunction
,所以我不知道它是什么导致了我遇到的问题。有什么建议么?
// ==UserScript==
// @name Restore Dashboard Tags
// @namespace http://userstyles.org
// @description This script restores a user's tracked tag list to the sidebar on tumblr
// @author
// @homepage
// @history 1.0 first version
// @include http://www.tumblr.com/*
// @match http://www.tumblr.com/*
// ==/UserScript==
var jQuery, $ = null;
function addJQuery(callback) {
var p = null;
if(window.opera || window.navigator.vendor.match(/Google/)) {
var div = document.createElement("div");
div.setAttribute("onclick", "return window;");
p = div.onclick();
}
else {
p = Window;
}
jQuery = $ = p.jQuery.noConflict();
callback();
}
var myFunction = function() {
jQuery('div#right_column ul:first-child').after('<ul class="controls_section" id="tracked_tags"></ul>');
jQuery('div.tracked_tags a').each(function (i) {
var tagID = jQuery(this).attr("id");
var tagIDNumber = tagID.replace('tag_','');
var tagName = jQuery(this).attr("href");
var tagNameClean = tagName.replace('/tagged/','');
var tagContent ='';
tagContent += '<li><a href="'+tagName+'" id="'+tagID+'" class="tag">';
tagContent += '<div class="hide_overflow">'+tagNameClean+'</div>';
tagContent += '<span id="tag_unread_'+tagIDNumber+'" class="count" style=""></span></a></li>';
jQuery(tagContent).appendTo('div#right_column ul#tracked_tags');
});
};
var NewPosts = function(){
jQuery('div.tracked_tags > div').each(function (i) {
var thisIndex = jQuery(this).index();
if (jQuery(this).find('small').length){
var postCount = jQuery(this).find('small').text();
jQuery('div#right_column ul#tracked_tags li:eq('+thisIndex+')').find('.count').html(postCount.replace("new posts", "") );
}
});
setTimeout(NewPosts,30000);
}
addJQuery(myFunction);
addJQuery(NewPosts);