IE8不提供表单中的隐藏输入

时间:2014-04-09 12:21:51

标签: html forms post internet-explorer-8

我在一个项目中找到了这个表单,它在Chrome中运行良好,但在Internet Explorer中运行不正常。 IE8确实将表单作为POST提交,但不发送隐藏的输入:

    <form name="logout_frm" id="logout" action="index.php" method="post">
        <label>Logout</label>
        <input type="hidden" name="logout" value="1" />
        <input type="submit" name="logoutBtn" value="logout" />
    </form>

这是我从fiddle2获得的原始数据,WebForms标签也是空的:

POST https://example.com/index.php HTTP/1.1
Accept: application/x-ms-application, image/jpeg, application/xaml+xml, image/gif, image/pjpeg, application/x-ms-xbap, */*
Referer: https://hostname.net/index.php
Accept-Language: de-DE
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)
Content-Type: application/x-www-form-urlencoded
Accept-Encoding: gzip, deflate
Host: hostname.net
Content-Length: 0
Connection: Keep-Alive
Cache-Control: no-cache
Cookie: GUEST_LANGUAGE_ID=en_US; COOKIE_SUPPORT=true; ntlm=1; PHPSESSID=28b0fbgol5bnq56qqst423p80ota470sqclbnpc4p5egqqdbt4tw
Authorization: NTLM TlRMTVNTUAABAAAAB4IIogAAAAAAAAAAAAAAAAAAAAAAAbEdAAAAAA==

更新

如果我清除缓存并重新加载页面,它会工作一次但只能运行一次。也许这与NTLM登录Authorization: NTLM有某种关联。

2 个答案:

答案 0 :(得分:0)

您已复制logout名称。重命名隐藏字段或表单。

答案 1 :(得分:0)

我注意到它是关于caching的东西,只是禁用它,现在它可以工作:

<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">

这不是一个真正的答案,因为它没有解释在这里做了什么,但它是一种解决方法。