如何在 Javascript 中使用 onPageLoad?
我尝试使用
onPageLoad: function() {
alert("hi");
}
但它不起作用。 我需要它作为 Firefox 扩展。
请问有什么建议吗?
I tried using
onPageLoad: function() {
alert("hi");
}
but it won't work. I need it for a Firefox extension.
Any suggestions please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
或
对于您的示例
编辑-
对于firefox中的扩展页面加载示例
or
for your example
EDIT -
For the extension in firefox On page load example
如果您想在普通 JavaScript 中执行此操作,只需使用
window.onload
事件处理程序。If you want to do this in vanilla javascript, just use the
window.onload
event handler.假设您指的是 onload-event:
您应该使用像 jQuery 这样的 javascript 库来制作它适用于所有浏览器。
如果您确实不想使用 javascript 库(不要指望它在所有浏览器中都能正常工作。):
Assuming you meant the onload-event:
You should use a javascript library like jQuery to make it work in all browsers.
If you really don't want to use a javascript library (Don't expect it to work well in all browsers.):