-10

我想使用标题标签在浏览器中显示标题。我用了

<script>$(document.title).html('title');</script>
4

2 回答 2

5
<script type="text/javascript"> document.title = "123"; </script>
于 2013-09-16T13:49:17.807 回答
0

尝试这个:

你应该使用document.title="add your new title here";

但是使用 jquery 并不是在 html 文档中进行这种更改的首选方式。我相信它的速度较慢并且在 IE6/7 中不受支持。

$(document).ready(function ()
{
    $('title').text("add you new title here");
});
于 2013-09-16T13:50:16.940 回答