hack在微信等webview中无法修改title的情况

今天下午弄的半天的, 最后终于解决了。

上代码:

var $body = $(‘body‘);
document.title = ‘title‘;
// hack在微信等webview中无法修改document.title的情况
var $iframe = $(‘<iframe src="/favicon.ico"></iframe>‘);
$iframe.on(‘load‘,function() {
  setTimeout(function() {
      $iframe.off(‘load‘).remove();
  }, 0);
}).appendTo($body);

 

 其中。 document.title ==$("title").html("文字内容");

 

hack在微信等webview中无法修改title的情况

上一篇:微信sdk分享功能详解


下一篇:医疗健康大数据:应用实例与系统分析