微信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)
原文地址:https://www.cnblogs.com/baixc/p/5220862.html