基本上我所拥有的是,有一个索引文件,它链接到一个 JS 文件,然后拉入一个 PHP 文件。
因此,在我拥有的 PHP 文件中(以及其他代码):
echo " <script type='text/javascript'>var paging = [ ";
echo "{";
echo "numrows:'" . number_format($numrows) . "',";
echo "pagenum:'" . number_format($pagenum) . "',";
echo "maxpage:'" . number_format($maxpage) . "',";
echo "record_min:'" . number_format($record_min) . "',";
echo "record_max:'" . number_format($record_max) . "'";
echo "}];</script>";
然后,在一个 JS 文件中,我使用 ajax:
req.open("GET", "server.php", true);
在 readystatechange 中,我需要检索您从 php 文件中看到的分页变量,因为它包含来自数据库的数据。
在 JS 文件中,我尝试使用变量而不是 echo
var m=<?PHP echo $paging; ?>
但这也不起作用。
任何建议或想法如何让它发挥作用?