如何通过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>
答案 0 :(得分:2)
你可以做点什么,
<script type="text/javascript">
document.title = "This is the new page title.";
//or
$(document).attr('title', 'test');
</script>
答案 1 :(得分:1)
您可以通过以下代码进行检查:
document.title="My Title by Vaibhav";
document.write(document.title);
答案 2 :(得分:1)
使用
$('title').html("new title");