重定向页面并使用ajax发送var值

时间:2013-11-03 08:52:00

标签: php ajax

我使用

重定向到页面star.php
window.location.href = 'start.php';

在我重定向之前我只想发送(发布) var userid来start.php

我该怎么办?

1 个答案:

答案 0 :(得分:1)

你不能这样张贴。而是通过url传递它:

window.location.href = 'start.php?userid='+userid;

您将在start.php

中获得$_GET['userid']的值