Html 微信 IOS系统中修改title

document.title = “选择联系人”;
initTitle();

function initTitle() {
 try {
 // hack在微信等webview中无法修改document.title的情况
 var userAgent = navigator.userAgent; // 取得浏览器的userAgent字符串
 if (userAgent.indexOf("iPhone") > -1) {
 var $body = $('body');
 var $iframe = $('<iframe src="/favicon.ico"></iframe>');
 $iframe.on('load', function() {
 setTimeout(function() {
 $iframe.off('load').remove();
 }, 0);
 }).appendTo($body);
 } // 判断是否Safari浏览器
 } catch (e) {
 console.info(e);
 }
}