我的代码需要帮助。告诉我是否可行。
我有捕获LocalStorage数据的脚本。现在,我想将其传递为变量。
我得到了价值。假设HighScore的值为100,LastScore的值为50。
好的,我想制作一个HighScore,而LastScore是一个变量,这样我就可以调用它以将其写入文件中。
这是我的代码。感谢有人可以帮忙。预先感谢。
JS代码...
var HighScore = localStorage.getItem('HighScore');
var LastScore = localStorage.getItem('LastScore');
PHP代码...
echo "<script>document.writeln(HighScore);</script>";
echo "<script>document.writeln(LastScore);</script>";
我想将HighScore和LastScore设置为变量。