gpt4 book ai didi

javascript - 使用javascript设置html页面的标题

转载 作者:太空宇宙 更新时间:2023-11-04 02:30:34 25 4
gpt4 key购买 nike

页面的标题由外部 javascript 设置。我找不到执行此操作的确切功能。所以我写了一个函数并将它放在html文件中。但它仍然显示以前的 javascript 函数的标题。

<script type="text/javascript">

$(document).ready(function() {
document.title = 'Pry';
});

</script>

最佳答案

您也可以尝试定期更改标题。因为您不知道脚本何时实际更改标题。

setInterval(function() {
document.title = 'Pry';
}, 1000);

如果脚本更改一次标题,您也可以在标题更改后停止此计时器

var title = 'Pry';
var count = 0;
var timer = setInterval(function() {

if (document.title !== title)
count += 1;

document.title = title;

// count will be incremented twice
// once when this function runs for first time
// when title is actually changed
if (count >= 2)
clearInterval(timer);

}, 1000);

最好编辑实际更改标题的脚本,而不是编写另一个例程来更改标题。

关于javascript - 使用javascript设置html页面的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36581627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com