Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用してページ star.php にリダイレクトします
window.location.href = 'start.php';
var useridリダイレクトする前に、start.phpに送信 (投稿) したいだけです
var userid
どうすればいいですか?
このように投稿することはできません。代わりに、次のような URL を介して渡します。
window.location.href = 'start.php?userid='+userid;
$_GET['userid']start.phpのように値を取得します。
$_GET['userid']