document.f.action = loginUrl;
document.f.submit();
IE报错:对象不支持此属性或方法
火狐错误: document.getElementById("myForm").submit is not a function
解决方法:
<input type="button" name="submit" value="提交"?onclick="login();">
把name="submit"的submit改成其他名称,总之不能是submit。