我的网站是这样的: 1.用户输入用户名并通过并按提交。 2.在提交时,将ajax发送到检查信息和回送1,2或3的页面。 3.基于ajax结果,它将用户发送到应用程序窗口。
我需要什么:当用户被发送到应用程序窗口时,我希望将用户ID粘贴到新地址中。
<script>
$(document).on("click", "#submit", function(event)
{
var user = document.getElementById("name").value;
var pwd = document.getElementById("pwd").value;
$.post("userExistCheck.php",
{
userName: user,
userPass: pwd
},
function(result)
{
if (result == "0")
{
window.location.replace("Moment/momentApp.php");
}
else if (result == "1")
{
alert("Password is incorrect!");
}
else
{
alert("User does not exist!");
}
});
})
</script>
答案 0 :(得分:2)
嗨,只需更改此行
即可window.location.replace("Moment/momentApp.php?userid=" + userid);
答案 1 :(得分:1)
尝试类似这样的内容
我希望这是你想要的,否则就跟妈妈一起回答:)
<强> HTML 强>
<input type="hidden" id="userid" name="userid" value="1" />
<强> Jquery的强>
var userid = document.getElementById("userid").value;
$.post("userExistCheck.php",
{
userName: user,
userPass: pwd,
userid : userid //here u can pass the userid
},
答案 2 :(得分:0)
add_custom_target(compile_time.hpp)
所以,基本上你可以发送用户ID。我没有编写完整的代码,但是应该附加必要的部分