Created
July 16, 2017 03:37
-
-
Save jinyu121/f6be839d8ca9f9764ef6d70164df7e36 to your computer and use it in GitHub Desktop.
狡猾的标题栏(失去焦点就变成其他文字)
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
$(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