微信iOS下如何改变页面title

iOS下在微信中,通过document.tilte = “new title”的方式,不会使得title有变化,具体原因未知,但这里我们可以通过hack的方式来做到。

var $body = $('body')
document.title = ‘title’
// hack在微信等webview中无法修改document.title的情况
var $iframe = $('<iframe src="/favicon.ico"></iframe>').on('load', function() {
  setTimeout(function() {
    $iframe.off('load').remove()
  }, 0)
}).appendTo($body)

 

posted @ 2016-02-26 16:30  白小虫  阅读(1592)  评论(0编辑  收藏  举报