所以我有點實踐注入jQuery到不同的網站,看看我的代碼如何工作,我碰到這種情況,我似乎無法弄清楚爲什麼這個人不想接受我的即使它被放置在標題中並表示成功注射。注入jQuery不工作
以下是我正在試圖注入代碼:
var fileref = document.createElement('script');
fileref.setAttribute("type","text/javascript");
fileref.setAttribute("src", "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js");
if (document.getElementsByTagName("head") != undefined)
{
console.log("Adding jQuery to head");
document.getElementsByTagName("head")[0].appendChild(fileref);
}
else
{
console.log("Adding jQuery to document");
document.appendChild(fileref);
}
它通常適用於不同的網站,但該網站上,我得到這個結果爲,爲什麼呢?
你的代碼注入Angular而不是jQuery。你發佈了錯誤的代碼嗎? – Barmar
但糾正我,如果我錯了,但不AngularJS包含jQuery的? – m3kkis
我不知道,我從來沒有用過它。我希望它需要你先加載jQuery,但也許它會自動加載它。 – Barmar