我想保存cnt1
并tim
进入 MySql 数据库。我知道 Javascript 是客户端,而 PHP 是服务器端,可用的选项是使用POST GET
andCOOKIE
方法。但我似乎无法在我的代码中应用。
它实际上是一个来自http://www.hscripts.com/scripts/jquery/memory-game.php的记忆游戏,玩游戏的链接是http://www.hscripts.com/scripts/jquery/memory-游戏.php 我想节省时间和移动次数。
有什么建议吗?请非常感谢。
function finish()
{
var cnt1 = $("#counting").val();
var tim=$("#timecount").val();
alert("Congratulations! You have won the game Total Move : "+cnt1+" Time : "+tim+" seconds");
if(confirm("Do you want to play again"))
{
stopCount();
window.location.href="index.php";
}
else
{
window.location.href="leaderboard.php";
}
}