微信網頁設置標題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是無效的,需要使用其他方法更改

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章