修正微信浏览器title

微信修正浏览器title

用document.title=”xxxx”动态修正title,在iOS微信下不见效

解决方法是

document.title = title;
const iframe = document.createElement('iframe');
iframe.src = 'img/logo.png';
const listener = () => {
    setTimeout(() => {
        iframe.removeEventListener('load', listener);
        setTimeout(() => {
            document.body.removeChild(iframe);
        }, 0);
    }, 0);
};
iframe.addEventListener('load', listener);
document.body.appendChild(iframe);

参考
https://segmentfault.com/q/1010000002926291
http://www.zhihu.com/question/27849091#

    原文作者:麦芽糖
    原文地址: https://segmentfault.com/a/1190000005912548
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞