我正在开发firefox扩展,我需要知道用户何时关闭了浏览器,所以我可以调用一个函数。我搜索了firefox插件sdk文档,我还没有找到任何东西。我的问题有解决方案吗?
答案 0 :(得分:3)
require("sdk/system/unload").when(function(reason) {
if (reason === 'shutdown') {
handleShutdown();
}
if (reason === 'disable') {
handleShutdown();
}
});
答案 1 :(得分:0)
尝试过这个吗?
<script type="text/javascript">
$(document).ready(function(){
window.onbeforeunload = function() {
var msg =" If you're not interested please let us know what we can do to improve."
return msg;
} });
</script>