ios设备中angularjs无法改变页面title的解决方法

2019/6/27 7:42:33

本文主要是介绍ios设备中angularjs无法改变页面title的解决方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

如下所示:

$rootScope.$watch('title',function(title){
 var body = document.getElementsByTagName('body')[0];
 document.title = title;
 var iframe = document.createElement("iframe");
 iframe.title = '';
 iframe.width = 0;
 iframe.height = 0;
 iframe.setAttribute("src", "/empty.png");

 iframe.addEventListener('load', function() {
 setTimeout(function() {
  iframe.removeEventListener('load');
  document.body.removeChild(iframe);
 }, 0);
 });
 document.body.appendChild(iframe);
});

// 代码放在app.js中,代码备份下,预防下次遇到同样的问题。

以上这篇ios设备中angularjs无法改变页面title的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持找一找教程网。



这篇关于ios设备中angularjs无法改变页面title的解决方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程