1

我正在使用一个经典的 ASP 站点并且遇到了一些难题...我的表单在 IE 中完美运行,但在 Chrome、Opera 和 Firefox 中我无法单击表单中的任何内容 - 我无法键入或甚至让光标显示在输入字段中,链接不可点击,按钮也不可点击。鼠标指针甚至不会在任何这些元素的鼠标悬停时改变。

文档类型是 HTML 4.01 Strict,我已经使用 W3 验证器对其进行了验证。页面页眉和页脚中的链接可以正常点击。

<form name="esi" method="post" action="employeehome.asp">
<p>
    <label for="empid" class="achtung">Employee ID:</label><br>
    <input type="text" name="empid" size="20" maxlength="30">
</p>
<p>
    <label for="emppw" class="achtung">Password:</label><br>
    <input type="password" name="emppw" size="20" maxlength="20"><br>
    <a href="emppwrecovery.asp" class="txtfsz10">Password Recovery</a>
</p>
<p>
    <input type="hidden" name="empstatus" value="1">
</p>
<p class="submitbuttonspace">
    <input type="submit" value="Sign In">
</p>
</form>
4

1 回答 1

0

这个表单示例没有任何问题。我刚刚在我的服务器上测试了它。没有错误,也没有什么可以禁用任何东西。

您必须有其他东西使您的浏览器崩溃。

于 2012-12-06T17:08:29.787 回答