gpt4 book ai didi

JavaScript 代码在滚动选项卡栏中显示当前页面标题

转载 作者:行者123 更新时间:2023-12-03 11:26:43 26 4
gpt4 key购买 nike

我一直在尝试在滚动选项卡中显示页面标题,而不是我的特定消息,这可能会惹恼访问者。

是否可以显示当前页面标题而不是我的消息?

这是脚本:

msg = "MESSAGE";
msg = "MY MESSAGE" + msg;
pos = 0;

function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos > msg.length) {
pos = 0;
}
window.setTimeout("scrollMSG()", 200);
}
scrollMSG();

最佳答案

您可以使用具有页面标题的document.title。另外,不要在 setTimeout 中使用字符串,因为它会通过 eval(),而是仅传递函数引用。

msg = document.title;
msg = "MY MESSAGE" + msg; // don't know if you need this line
pos = 0;
function scrollMSG() {
document.title = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos = 0
window.setTimeout(scrollMSG, 200);
}
scrollMSG();

关于JavaScript 代码在滚动选项卡栏中显示当前页面标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26889354/

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