标签:document bsp end doc remove nbsp out strong att
若是PC端网页:(jquery方式)
$(document).attr(“title”);
$(“title”).html();
$(document).attr(“title”, “我的页面标题修改”);
$(“title”).html(“我的页面标题修改”);
由于微信浏览器只在页面首次加载时初始化了标题title,之后就没有再监听window.title的change事件。
所以这里修改了title后,立即创建一个请求,加载一个空的iframe,由于加载后立即就移除,不会对页面造成影响。
这样微信浏览器的title就刷新了。
1 var $body = $(‘body‘); 2 document.title = ‘这里是要修改成的新标题‘; 3 4 var $iframe = $(‘<iframe></iframe>‘); 5 $iframe.on(‘load‘,function() { 6 setTimeout(function() { 7 $iframe.off(‘load‘).remove(); 8 }, 0); 9 }).appendTo($body);
标签:document bsp end doc remove nbsp out strong att
原文地址:http://www.cnblogs.com/lhy-555/p/7919739.html