页面加载后加载并执行脚本?

发布于 2024-11-09 16:28:39 字数 826 浏览 1 评论 0原文

我正在尝试通过我的 Firefox 插件将外部 javascript (jquery) 加载到第三方网页,WebDeveloper 插件显示 jquery 脚本语法已成功附加到“查看生成的源”中的 head 部分,但脚本未执行/获取?,我在我的插件中使用以下代码来加载脚本:

function loadjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  fileref.setAttribute("src", filename)
  fileref.setAttribute('onload', 'firefoxInit()');

}
else if (filetype=="css"){ //if filename is an external CSS file
  var fileref=document.createElement("link")
  fileref.setAttribute("rel", "stylesheet")
  fileref.setAttribute("type", "text/css")
  fileref.setAttribute("href", filename)
}
if (typeof fileref!="undefined")
  document.getElementsByTagName("head")[0].appendChild(fileref)
}

请。指导如何前进。

I am trying to load an external javascript (jquery) via my Firefox addon to a third-party webpage, WebDeveloper addons shows the jquery script syntax getting successfully appended to the head section in "View Generated Source" but the script is not getting executed/fetched ?, I am using the following code in my addon to load the script :

function loadjscssfile(filename, filetype){
if (filetype=="js"){ //if filename is a external JavaScript file
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  fileref.setAttribute("src", filename)
  fileref.setAttribute('onload', 'firefoxInit()');

}
else if (filetype=="css"){ //if filename is an external CSS file
  var fileref=document.createElement("link")
  fileref.setAttribute("rel", "stylesheet")
  fileref.setAttribute("type", "text/css")
  fileref.setAttribute("href", filename)
}
if (typeof fileref!="undefined")
  document.getElementsByTagName("head")[0].appendChild(fileref)
}

Pls. guide how to move forward.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜味超标? 2024-11-16 16:28:39

您可以在 javascript 末尾添加 firefoxInit(); 并删除 onload 属性分配。

You can add at the end of your javascript firefoxInit(); and remove the onload attribute assignment.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文