JS动态修改微信浏览器导航标题

参考 https://www.cnblogs.com/karila/p/6677381.html 但运行有错
花时间改了一发:
document.title = '导航标题';

var iframe = document.createElement('iframe');

iframe.style.visibility = 'hidden';

iframe.style.width = '1px';

iframe.style.height = '1px';

iframe.onload = function () {

  setTimeout(function () {

    document.body.removeChild(iframe);

  }, 0);

};

document.body.appendChild(iframe);

你可能感兴趣的:(JS动态修改微信浏览器导航标题)