Created
October 24, 2016 07:34
-
-
Save lixingcong/857b48fefed90baab3f34ee511656993 to your computer and use it in GitHub Desktop.
change html tilte when switch over pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var this_title=document.title; | |
document.addEventListener('visibilitychange', function() { | |
document.title = document.hidden ? this_title+":你看不到我~": this_title; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment