美文网首页
iOS在H5中设置title

iOS在H5中设置title

作者: 只诉温暖不言殇_cc03 | 来源:发表于2018-09-19 14:13 被阅读0次

    解决H5设置title在ios中失效的问题

    背景:在app中引入h5页面动态设置标题时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)

    }

    调用:document.setTitle('我是标题')

    相关文章

      网友评论

          本文标题:iOS在H5中设置title

          本文链接:https://www.haomeiwen.com/subject/fkkinftx.html