开发者问题收集

使用 Chrome Web Console 时 jQuery 似乎无法加载

2016-07-06
4542

以下脚本通过 Chrome Web 控制台成功运行了数月,但突然无法正常工作。

// Override site's disabling of the console.log function
console.log = console.__proto__.log

// get the DOM ready to process
$(document).ready()
function doThisThing(){
  window._waitWindow = setInterval(function(){

    // start looking for items not 'ready to go'
    items = $("div.Catalogitem-content");
    $.each(items, function(index){

           if($(items[index]).find(".Catalogitem-stager").text().includes("ready to go") || index < lastitemCount){
              $(this).css("background-color", "#84f784");
            } else {
                $(this).css("background-color", "#ff7089");
                $(this).find(".engage-cycle-btn").click();
              }
         });
        window.scrollTo(0, document.body.scrollHeight);
    }, 10000);
  return window._waitWindow;
}

function stopit() {
  clearInterval(window._waitWindow);
  console.log("Just executed clearInterval.");
}

抛出的错误是:

Uncaught DOMException: Failed to execute 'querySelector' on 'Document': '[object HTMLDocument]' is not a valid selector.

有问题的行是:

$(document).ready()

我采取的措施:

  1. 我检查了 jQuery 是否已正确加载。以下命令的结果让我相信 jQuery 未正确加载...也许我错了?

命令 1

$(document).ready(function($){ });

Uncaught DOMException: Failed to execute 'querySelector' on 'Document': '[object HTMLDocument]' is not a valid selector.

命令 2

console.log($())

null

命令 3

$().jquery

Uncaught TypeError: Cannot read property 'jquery' of null(…)

命令 4

jQuery.jquery

Uncaught ReferenceError: jQuery is not defined(…)

命令5

$('.class');

null


  1. 尝试通过在 Web 浏览器中运行以下代码来加载 jQuery:

    var jq = document.createElement('script'); jq.src = " https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js "; document.getElementsByTagName('head')[0].appendChild(jq);

出现此错误:

VM711:3 Refused to load the script ' https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js ' because it violates the following Content Security Policy directive: blah blah blah.

一直在互联网上寻找解决方案,但感觉自己陷入了深深的困境。 是不是 jquery 没有加载? 是不是我正在处理数据的网站增加了新的安全层来阻止我的自动化?

我不知所措。提前谢谢。

2个回答

您已发布答案。 拒绝加载脚本“https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js”,因为它违反了以下内容安全策略 - jQuery 加载不正确。尝试将 https://ajax 更改为 //ajax

Michael Hommé
2016-07-06

之前已经有人问过这个问题,也许以下问题的答案可以解决您的问题:

子站点引用了旧版本的 jQuery

WSimpson
2016-07-06