Skip to content

Instantly share code, notes, and snippets.

@plilion
Created August 25, 2015 02:41
Show Gist options
  • Select an option

  • Save plilion/b09af563b9d0dfa7f4c3 to your computer and use it in GitHub Desktop.

Select an option

Save plilion/b09af563b9d0dfa7f4c3 to your computer and use it in GitHub Desktop.
iphone微信修改title
var $body = document.body;
document.title = title || document.title;
var $iframe = document.createElement('iframe');
$iframe.src = '/favicon.ico';
$iframe.onload = function(){
setTimeout(function(){
$iframe.onload = function(){};
$body.removeChild($iframe);
},0)
};
$body.appendChild($iframe);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment