我是 javascript 新手,我正在尝试编写一个脚本来打开一个窗口,然后填写表单并提交它。我编写的代码只是加载页面,但它没有填写表单我的代码有什么问题,我该如何纠正它?
<html>
<head>
<title>Popup</title>
<script language="javascript" type="text/javascript">
function LoadTextBox(){
document.getElementById("usrname").value = "abc";
document.getElementById("passwd").value = "xyz";
}
function Submit(){
document.getElementById('LoginButton');
loginForm.submit();
}
window.open("loginpage.php");
LoadTextBox();
Submit();
</script>
</head>
<body></body>
</html>