gpt4 book ai didi

jquery - 如何在 Firefox Scratchpad 中使用 jQuery?

转载 作者:行者123 更新时间:2023-12-01 03:07:38 24 4
gpt4 key购买 nike

如何在 Firefox Scratchpad 中使用 jQuery?
我有 Firefox v54.0.1。

我用 google 搜索,发现一些文章提到 Firefox Scratchpad 如何内置 jQuery,但这些文章是在 Scratchpad 首次发布时写的。

http://www.davidhayden.me/blog/jquery-and-javascript-development-using-firefox-scratchpad

https://hacks.mozilla.org/2013/11/reintroducing-the-firefox-developer-tools-part-2-the-scratchpad-and-the-style-editor/

我最初只是尝试了 jQuery 代码,当它不起作用时,我为其添加了 CDN。我很绝望。

如有任何建议,我们将不胜感激!
谢谢!

Firefox Scratchpad Screenshot

编辑:(添加戴夫的建议)

Firefox Scratchpad Screenshot 2

最佳答案

您应该能够通过在暂存器的开头添加此代码来注入(inject)脚本元素。此外,您需要等待它加载,您需要在回调中运行代码

let jq = document.createElement("script");
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js";
jq.onload = function() {
//your code here
};
document.body.appendChild(jq);

关于jquery - 如何在 Firefox Scratchpad 中使用 jQuery?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45042129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com