このページのタイトルを 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>
次のようなことができます。
<script type="text/javascript">
document.title = "This is the new page title.";
//or
$(document).attr('title', 'test');
</script>
使用する
$('title').html("new title");
次のコードで確認できます。
document.title="My Title by Vaibhav";
document.write(document.title);