Fork me on Github

微信等webview中无法修改document.title的情况

// hack在微信等webview中无法修改document.title的情况
var $iframe = $('<iframe src="https://www.bbtree.com/favicon.ico" style="display: none;"></iframe>');
$iframe.on('load',function() {
setTimeout(function() {
$iframe.off('load').remove();
}, 0);
}).appendTo($('body'));
posted @ 2018-04-02 09:46  王者归来!  阅读(322)  评论(0编辑  收藏  举报