修改微信瀏覽器title

微信修改瀏覽器title

用document.title="xxxx"動態修改title,在iOS微信下不生效segmentfault

解決方法是瀏覽器

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#微信

相關文章
相關標籤/搜索