document.title = "我是标题";
var iframe = document.createElement("iframe");
iframe.src = "/favicon.ico";
document.body.appendChild(iframe);
iframe.onload = function() {
setTimeout(function() {
document.body.removeChild(iframe);
}, 0)
}
使用如上方法,在ios各端都是正常,可是在电脑的微信中打开是没有效果的,无法改变,请问有什么解决方法吗?
给个复现链接看下呢