0

我使用重定向到页面star.php

window.location.href = 'start.php';

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

我该怎么办?

4

1 回答 1

1

你不能这样发帖。而是通过 url 传递它,例如:

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

您将获得$_GET['userid']start.php 中的值

于 2013-11-03T08:53:40.017 回答