0

如何通过javascript设置此页面标题

<head runat="server">
    <link href="../App_Themes/CSS/Catalyst.css" rel="stylesheet" type="text/css" />
    <title><asp:Literal ID="ltlTitle" runat="server"></asp:Literal>
        </title>
</head>
4

3 回答 3

2

你可以做类似的事情,

<script type="text/javascript">    
  document.title = "This is the new page title.";

  //or 

 $(document).attr('title', 'test');
</script>
于 2013-11-12T11:02:04.130 回答
1

您可以通过以下代码检查:

document.title="My Title by Vaibhav";
document.write(document.title);
于 2013-11-12T11:03:50.507 回答
1

利用

$('title').html("new title");
于 2013-11-12T11:07:54.607 回答