Skip to content

Instantly share code, notes, and snippets.

@jinyu121
Created July 16, 2017 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jinyu121/f6be839d8ca9f9764ef6d70164df7e36 to your computer and use it in GitHub Desktop.
Save jinyu121/f6be839d8ca9f9764ef6d70164df7e36 to your computer and use it in GitHub Desktop.
狡猾的标题栏(失去焦点就变成其他文字)
$(document).ready(function(a) {
t = document.title,
d = "(●—●) 你快回来~ | " + t;
$(window).blur(function() {
document.title = d
}).focus(function() {
document.title = t
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment