如何根据文件名自动更改HTML标题?

时间:2015-10-11 18:20:19

标签: javascript jquery html

所以例如文件名是Hello.html,你如何让html标题转向" Hello"自动?这可以用javascript / jquery吗?

1 个答案:

答案 0 :(得分:2)

通过以下方式更新标题:

document.title = (location.pathname.substring(location.pathname.lastIndexOf("/") + 1)).replace('.html','');