是否可以在 html 中放置某种占位符,然后我可以在从 PHP 获取它后填充一个值?
例如,如果我想根据仅在页面稍后发生的 Mysql 查询的第一个结果更改 html 页面的标题,我该怎么做?
<html>
<head>
<title> </title>
</head>
<?php $title = mysql_query() ?>
--> how to update now the <title> element of the page?
我经常遇到我需要在 html 中打印的东西,只是在 PHP 页面渲染的后期,有没有办法(JS?)做这样的事情?