我类的一位学生引起了我的注意,对此我没有任何解释-搜索后找不到。

单击提交按钮后,重置按钮不起作用。如果资源是通过发布请求来请求的,那么浏览器就好像阻止了重置。


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <fieldset>
            <legend>User Form</legend>
            <label for="Username"></label>
            <asp:TextBox ID="Username" runat="server"></asp:TextBox>
        </fieldset>
        <asp:Button runat="server" Text="Submit" />
        <input type="button" onclick="window.document.forms[0].reset()" value="reset" />
    </div>
    </form>
</body>
</html>

最佳答案

当您单击重置时,条目将重置为默认值。默认值是服务器在第一种情况下为空字符串但在过帐发布值后呈现的值。 (http是无状态协议(protocol))如果尝试编辑过帐的值,然后单击“重置”,则会看到将还原原始过帐的值。

10-04 21:24