微信网页设置标题title

document.setTitle = function(t) {
        document.title = t;
        var i = document.createElement('iframe');
        i.src = '/wechat/images/nopng.png';
        i.style.display = 'none';
        i.onload = function() {
            setTimeout(function(){
                i.remove();
            }, 9)
        }
        document.body.appendChild(i);
    }

在微信网页中直接设置head里的title是无效的,需要使用其他方法更改

你可能感兴趣的:(微信开发)