解決H5設(shè)置title在ios中失效的問題
背景:在app中引入h5頁面動態(tài)設(shè)置標(biāo)題時ios無法獲取title
document.setTitle=function(t){
? ? document.title = t
? ? var i = document.createElement('iframe')
? ? i.onload = function(){
? ? ? ? setTimeout(function(){
? ? ? ? ? ? i.remove()
????????},10)
?????}
? ? document.body.appendChild(i)
}
調(diào)用:document.setTitle('我是標(biāo)題')