问问题
5096 次
2 回答
9
你不能。
如果您想更改它,请添加一些将在客户端执行并为您执行此操作的 Java Script 代码:
<script>
document.title = "This is the new page title.";
</script>
并使用一些 PHP:
<head><title>some title</title></head>
<body>
<?php if (some condition, etc) { ?>
<script>
document.title = "This is the new page title.";
</script>
<?php } ?>
</body>
于 2013-04-14T23:05:28.037 回答
2
<html>
<head>
<title>Hello</title>
</head>
<body>
<?
echo "<script>document.title='Hello, World!';</script>";
?>
</body>
</html>
于 2013-04-14T23:07:22.513 回答