微信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)

 

微信iOS下如何改变页面title

上一篇:91家纺网,加上redis数据联通测试基础测试第一次


下一篇:《C#微信开发系列(Top)-微信开发完整学习路线》