欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

angularJs中动态添加入口html文件的title

程序员文章站 2022-07-14 07:59:48
...

首先在index.html中加上

<title ng-bind="title"></title>

然后在需要的地方或全局加上

$rootScope.$watch('title',function(){ document.title = '我是动态的';});

就可以了

相关标签: angularJs title