标签: javascript jquery html
所以例如文件名是Hello.html,你如何让html标题转向" Hello"自动?这可以用javascript / jquery吗?
答案 0 :(得分:2)
通过以下方式更新标题:
document.title = (location.pathname.substring(location.pathname.lastIndexOf("/") + 1)).replace('.html','');