作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在 Firefox Scratchpad 中使用 jQuery?
我有 Firefox v54.0.1。
我用 google 搜索,发现一些文章提到 Firefox Scratchpad 如何内置 jQuery,但这些文章是在 Scratchpad 首次发布时写的。
http://www.davidhayden.me/blog/jquery-and-javascript-development-using-firefox-scratchpad
我最初只是尝试了 jQuery 代码,当它不起作用时,我为其添加了 CDN。我很绝望。
如有任何建议,我们将不胜感激!
谢谢!
编辑:(添加戴夫的建议)
最佳答案
您应该能够通过在暂存器的开头添加此代码来注入(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/
我是一名优秀的程序员,十分优秀!