页面加载后加载并执行脚本?
我正在尝试通过我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 javascript 末尾添加
firefoxInit();
并删除onload
属性分配。You can add at the end of your javascript
firefoxInit();
and remove theonload
attribute assignment.