在Firefox浏览器地址栏里输入 about:config ,在过滤器里输入browser.tabs. ,然后修改下面三个字符串的值(可以直接双击字符串修改)。
(1)browser.tabs.loadBookmarksInBackground 允许firefox从后台打开书签(true=后台打开;False=前台打开)
(2)browser.tabs.loadDivertedinbackground 选择标签页链接打开方式(True=在后台打开连接;False=在前台打开连接)
(3)browser.tabs.loadFolderAndReplace 书签菜单的在标签中打开是否替换掉原来已经打开的标签(true=替换,默认值;False=不替换)
设置完毕后,无需重新启动 Firefox,直接单击标签页面的链接,就可以发现Firefox直接在后台激活打开了新标签,而页面停留在当前标签并没有跳转。
顺便,有的弹出窗口是单独弹出来,而且不是在标签栏里面,并且不能修改url,这样不符合我的习惯,我就给改了。用的是需要安装插件的,tab mix plus
安装后,像图中设置下(选择“在新标签页打开所有窗口”)楼主只需要将TMP 链接选项卡里面的 “启用但窗口模式”勾起就行了
我的FF一直都这样设置,如图:
☆ IE6
1、点击工具菜单。
2、选择 Internet 选项。
3、点击常规标签。
4、点击删除cookies按钮。
5、在确认 窗口中点击确定按钮。
6、点击确定按钮关闭"Internet 选项"窗口。
☆ IE 7
1、点击工具菜单。如果您没找到该菜单,请按键盘上的 Alt 键来显示菜单。
2、选择删除浏览的历史记录。
3、点击删除cookie按钮。
4、在确认窗口中点击是按钮。
5、点击关闭按钮。
6、重新启动IE7。
☆火狐浏览器Firefox
1、单击浏览器顶部的"Tools"(工具)菜单,并选 择"Options"(选项)。
2、单击"Privacy"(隐私)。
3、单击删除私人cookie。
4、单击确定。
☆傲游(Maxthon)
1、单击浏览器顶部的"工具"菜单,并选择"Internet选项"。
2、在常规下选择删除cookie。
3、将文件删除后,点击关闭。
☆360浏览器
1、单击浏览器顶部的"工具"菜单,并选择"IE选项"。
2、在常规下选择删除cookie。
3、点击删除按钮。
4、将文件删除后,点击确定。重启浏览器~~
小贴士:什么是cookie
onPause(), onStop(), onDestroy() are "killable after" lifecycle methods. This indicates whether or not the system can kill the process hosting the activity at any time after the method returns, without executing another line of the activity's code. Because onPause() is the first of the three, once the activity is created, onPause() is the last method that's guaranteed to be called before the process can be killed—if the system must recover memory in an emergency, then onStop() and onDestroy() might not be called. Therefore, you should use onPause() to write crucial persistent data (such as user edits) to storage. However, you should be selective about what information must be retained during onPause(), because any blocking procedures in this method block the transition to the next activity and slow the user experience.
onCreate(), onRestart(), onStart(), onResume() are "unkillable after" methods.They protect the process hosting the activity from being killed from the moment they are called. Thus, an activity is killable from the time onPause() returns to the time onResume() is called. It will not again be killable until onPause() is again called and returns.
简单来说,在执行了onPause()方法之后,直到执行onResume()之前,该activity所在的进程都是有可能“突然死亡”的,onStop()和onDestroy()方法并不能保证一定会被执行。所以onPause()方法是持久化相关数据的最后的可靠时机。因此onPause()是特别重要的生命周期方法