js修改IOS微信title

作者: fullbook | 来源:发表于2016-09-10 09:18 被阅读27次

    安卓版正常,IOS内通过 document.title = ‘title’ 不生效
    解决办法:
    <pre>document.title = '页面标题';
    var iframe = document.createElement('iframe');
    iframe.src = '../assets/images/100x100.png';
    iframe.style.display = 'none';
    (document.body||document.documentElement).appendChild(iframe);
    iframe.onload = function() {
    setTimeout(function() {
    iframe.remove()
    }, 0);
    }</pre>

    相关文章

      网友评论

        本文标题:js修改IOS微信title

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