我有一个网站,它有各种框架,可以显示/隐藏,这取决于左侧菜单上选择的项目,如图所示:
当我点击左侧菜单上的一个项目时,我想更改浏览器标签页标题以匹配所选项目的标题。如何通过 Delphi 代码在运行时动态更改页面标题?
nwlls2ji1#
您可以使用Web单元中的document类,并更改document类中的title公共变量:
Web
document
title
document.title := 'Your new page title';
1条答案
按热度按时间nwlls2ji1#
您可以使用
Web
单元中的document
类,并更改document
类中的title
公共变量: