标签:
在app.js加入下面这句代码 就可以解决。
function ($rootScope, $state, $stateParams, $log, httpService, apiUrl, cookieUtil, $location) {
var $body = $(‘body‘);
document.title = toState.data.pageTitle;
var $iframe = $(‘<iframe src="/favicon.ico"></iframe>‘);
$iframe.on(‘load‘, function () {
setTimeout(function () {
$iframe.off(‘load‘).remove();
}, 0);
}).appendTo($body);
}
angularjs ios title不能修改的bug的解决方法
标签:
原文地址:http://www.cnblogs.com/cmrcj/p/5660839.html