我有这个代码:
function noti() {
document.title = document.title + " 1"
}
setInterval("noti()", 1000)
问题是它输出:
我的标题 1 1 1 1 1 1 1 ..... 无限.... 1
是否有任何可能的方式将其输出为“我的标题 1”
当每次在数据库中发生更新时,noti()函数的用途是,无论从数据库中收集的长度是多少,它将被输出到用户标题栏中。
因此,“My title 1”,其中“My title”是用户名,“1”是来自数据库的长度