标签: php ajax
我使用
window.location.href = 'start.php';
在我重定向之前我只想发送(发布) var userid来start.php
var userid
我该怎么办?
答案 0 :(得分:1)
你不能这样张贴。而是通过url传递它:
window.location.href = 'start.php?userid='+userid;
您将在start.php
$_GET['userid']