2

在 PHP 中,我们可以这样在文档的开头声明变量:

<?php
$title="Title of the webpage";
?>

在 html 代码中,此标题将替换echo $title网页 html 代码中的 。是否可以使用 html 和 Javascript 来实现,我的意思是不使用 PHP?

4

1 回答 1

4
<script>
var someVariable="someValue";
document.title = someVariable;
</script>
于 2012-07-17T19:19:33.007 回答