vue为页面动态添加title

var updateTitle = function(title) {
  document.title = title
  var mobile = navigator.userAgent.toLowerCase()
  if (/iphone|ipad|ipod/.test(mobile)) {
    var iframe = document.createElement('iframe')
    iframe.style.display = 'none'
    // 替换成站标favicon路径或者任意存在的较小的图片即可
    //iframe.setAttribute('src', 'static/user.png')
    iframe.setAttribute('src', 'static/images/icon1.png');
    var iframeCallback = function () {
      setTimeout(function () {
        iframe.removeEventListener('load', iframeCallback)
        document.body.removeChild(iframe)
      }, 0)
    }
    iframe.addEventListener('load', iframeCallback)
    document.body.appendChild(iframe)
  }
}

posted @ 2017-12-01 15:08  apgy  阅读(2353)  评论(0编辑  收藏  举报