-2

我正在尝试将通知编号添加到函数的标题中,但它不起作用。这是我的代码:

  var docTitle = document.title;

  document.title = "".docTitle." (".$(".loadnot").html().")";
4

3 回答 3

9

在 JavaScript 中,您应该使用+连接 not .

document.title = docTitle + "(" + $(".loadnot").html() + ")";
于 2012-10-13T14:52:32.827 回答
4

甚至更好:

document.title += " ("+$(".loadnot").html()+")";
于 2012-10-13T14:53:08.530 回答
-1

检查这个:

window.top.document.title = "Your Title";
于 2019-11-25T10:36:39.583 回答