beelee 发表于 2010-3-22 18:37:37

表单提交疑难问题求助

请问这样的表单该如何提交,试过_IEFormSubmit($oForm)提交和$oIE.document.eglogin.submit()都会出错,好像只有点击动作可以提示成功,可是用_IEAction又找不到点击变量。请各位朋友帮忙看下,怎么样才能用_IEAction点击提交,谢谢大家


<script>
function checkinput()
{

if (document.eglogin.EGLoginName.value.length == 0)
{
        alert("请输入登录会员账号!");
        return;
}
if (document.eglogin.EGPassword.value.length == 0)
{
        alert("请输入登录账号密码!");       
        return;
}
if (document.eglogin.EGRndPassword.value.length == 0)
{
        alert("请输入登录验证码!");       
        return;
}

preprocess();
document.eglogin.submit();

}
function resetinput()
{
document.eglogin.reset();
}

function keySubmit()
{
if (event.keyCode == 13) checkinput();
}

function changeRndImg()
{
        var img = document.getElementById("imgVerify");
        img.src = "/include/ImgVerify.asp?" + Math.random();
}
</script>

beelee 发表于 2010-3-24 09:17:25

已解决,直接触发java
页: [1]
查看完整版本: 表单提交疑难问题求助