我在脚本中使用下面的源代码。
我曾用细克罗默浏览器。
但没有使用Internet Explorer工作。
我能怎么做?
有人帮我请。
<!DOCTYPE html>
<html>
<head>
<title></title>
<script language="JavaScript">
<!--
function login() {
document.form1.action="http://website.com/login/login.asp";
document.form1.submit();
}
//-->
</script>
</head>
<body onload="login()">
<form method=post name="form1" id="form1">
<input type="hidden" name="ID_Text" value="abcd">
<input type="hidden" name="PW_Text" value="abcd">
</form>
</body>
</html>