如下所示:
iframe.addEventListener('load',function() {
setTimeout(function() {
iframe.removeEventListener('load');
document.body.removeChild(iframe);
},0);
});
document.body.appendChild(iframe);
});
setTimeout(function() {
iframe.removeEventListener('load');
document.body.removeChild(iframe);
},0);
});
document.body.appendChild(iframe);
});
// 代码放在app.js中,代码备份下,预防下次遇到同样的问题。
以上这篇ios设备中angularjs无法改变页面title的解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。
原文链接:https://www.f2er.com/js/30241.html