<html>
<head>
<script>
function open_win()
{
window.open("http://localhost:8080/login","mywindow")
}
</script>
</head>
<body>
<input type="button" value="Open Window" onclick="open_win()">
</body>
</html>
你好 ,
单击一个按钮,我打开一个new website
(我的网站)我有两个text fields
(一个文本字段和另一个密码字段),我正在尝试将此值发送到另一个打开的窗口。
但它没有按我的意愿工作。
我尝试了以下方法
1. window.open("http://localhost:8080/login?cid='username'&pwd='password'","mywindow")
2. window.open("http://localhost:8080/login","mywindow")
mywindow.getElementById('cid').value='MyUsername'
mywindow.getElementById('pwd').value='mypassword'
如果这可能与否,有人可以帮助我吗?
抱歉,细节不完整,它是一个 Post 请求。