我有一个生成会话ID的网站,并在此会话id的上下文中打开另一个网站。我想要一个按钮打开第一个网站,而不是自动登录第二个网站。
网站1:http://thisisanexample/example会导致http://thisisanotherexample/another
这将打开第一个站点,然后打开第二个站点: var myWindow;
function openWin() {
myWindow = window.open("http://thisisanexample/example");
}
</script>
在这之后,我被困住了。我如何向网站2提交以下帖子请求
<form action="http://thisisanotherexample/another/" method="POST" name="logonForm">
<input type="text" name="user" value="placeholder">
<input type="hidden" name="passwordnew1" value="">
<input type="hidden" name="passwordnew2" value="">
<input type="password" name="password" value="placeholder">
<input type="hidden" name="welcomescreen" value="1">
<input type="submit" value="Anmelden" name="cmd_login">
我希望你明白我的意思: - )
答案 0 :(得分:1)
您可以使用:
window.location.href = "http://www.example.com/otherSite?name=ferret";
导航到第二个站点,同时通过查询字符串参数传递用户名和密码。第二个站点将采用某种方法接受这些参数并自动登录用户。强烈建议您以某种方式加密查询字符串数据。
{{3}}