IE发布没有参数的动态创建表单

时间:2011-03-22 09:01:07

标签: javascript html internet-explorer forms post

所以我在飞行中生成表格并将其发布到另一个网站。问题是当我使用IE表单后请求时不包含任何参数。表单outerHTML在Mozilla和IE 8中是相同的,所以我无法理解它在IE 8中无法正常工作。 有没有办法解决?

以下是帖子生成的逻辑&张贴表格:

function PostForm() {
    var form = AddForm();

    var email = hiddenEmailCtrl.value;
    var password = hiddenPasswordCtrl.value;
    var checked = rememberMeCtrl.checked;

    AddField(form, "email", email);
    AddField(form, "password", password);
    AddField(form, "remember_me", checked);

    form.action = 'https://somesite.com/login';

    alert(form.outerHTML);
    alert(document.forms[1].outerHTML);

    document.forms[1].submit();
}

function AddForm() {
    var submitForm = document.createElement("form");

    document.body.appendChild(submitForm);

    submitForm.id = 'credentialsForm';
    submitForm.method = "post";
    submitForm.target = '_blank';

    return submitForm;
}

function AddField(formElement, fieldName, fieldValue) {
    var inputElement = null;

    if (typeof (document.all) != undefined && document.all) {
        inputElement = document.createElement("<input type='hidden' name='" + fieldName + "' value='" + fieldValue + "' />");
        inputElement.id = fieldName;
    }
    else {
        inputElement = document.createElement('input');

        inputElement.setAttribute('type', 'hidden');
        inputElement.setAttribute('name', fieldName);
        inputElement.setAttribute('value', fieldValue);

        inputElement.id = fieldName;
    }

    if (inputElement == null) return null;

    formElement.appendChild(inputElement);
    return inputElement;
}

这是Mozilla的要求:

POST /login HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: ensiconnect.groupsite.com
Content-Length: 42
Expect: 100-continue
Connection: Keep-Alive

email=some@email.com&password=somePassword

这是IE8请求:

CONNECT somesite.com:443 HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.1; .NET4.0C; .NET4.0E; AskTbF-ET/5.9.1.14019)
Proxy-Connection: Keep-Alive
Content-Length: 0
Host: ensiconnect.groupsite.com
Pragma: no-cache

1 个答案:

答案 0 :(得分:1)

IE使用非标准版本的document.createElement,它也支持HTML代码而不是简单的标记名称。由于这违反了标准,并且IE8达到了一定的长度以便更加合规,因此IE8可能只服从怪癖模式中的非标准变体。

您应该尝试删除document.all上的开关,并在AddField中通过IE8 w3c变体。如果可行,则需要测试IE7而不是document.all

不过,我只是在这里猜测,你需要测试它。