重置HTML 5表单Firefox后,仍会在输入上显示红色边框

时间:2013-08-11 11:21:16

标签: javascript css html5 forms firefox

我有一个HTML 5表单!太好了,我很兴奋!我决定使用xmlHttpRequest提交表单,我正在使用jQuery $.post(...)。它很棒,很棒。我输入一些无效数据并提交表单,那些表单控件的有效性状态无效 - 正如预期的那样。到目前为止一切都很好。

现在我在表单的输入控件中输入有效值并再次提交表单,这次成功除了1件事,在调用表单的reset()方法后,红色框阴影样式仍然存在。但是,如果输入在与它们交互后处于无效状态,但在提交表单之前被更正为有效状态,则在调用表单的reset()方法时,样式将被删除。

所以问题是如何覆盖这种行为?

1 个答案:

答案 0 :(得分:4)

Mozilla Firefox将伪类:-moz-ui-invalid应用于任何无效的表单控件。如果表单从未提交或者在调用表单的submit()方法时所有表单输入控件都有效,则调用表单的reset()方法将导致从输入控件中删除伪类。

但是,如果在提交表单时任何表单的输入控件无效,那么即使表单重置后,伪类也将始终应用无效的输入控件。

要获取完整文档并下载评论的javascript文件,请转至:http://www.syn-to.com/moz-ui-invalid.php

var form; 

(function()
{
    "use strict";

    //name must be a valid form name eg. <form name="myFormName" ...
    form = function(name)
    {
        var a =
        {
            "registerReset": function()
            {
                //if the boxShadow property exists, bind the reset event handler
                //to the named form

                if(typeof document.forms[name].style.boxShadow !== 'undefined')
                {
                    document.forms[name].addEventListener('reset', a.resetEventHandler);
                }
            },

            "reset": function()
            {
                a.registerReset();
                document.forms[name].reset();
            },

            "resetEventHandler": function()
            {
                //override the default style and apply no boxShadow and register
                //an invalid event handler to each of the form's input controls
                function applyFix(inputControls)
                {
                    for(var i=0;i<inputControls.length;i++)
                    {

                        inputControls[i].style.boxShadow = 'none';
                        inputControls[i].addEventListener('invalid', a.invalidEventHandler);
                        inputControls[i].addEventListener('keydown', a.keydownEventHandler);
                    }
                }

                var inputControls = this.getElementsByTagName('input');
                applyFix(inputControls);

                var inputControls = this.getElementsByTagName('textarea');
                applyFix(inputControls);

                var inputControls = this.getElementsByTagName('select');
                applyFix(inputControls);

            },

            "invalidEventHandler": function()
            {

                this.style.boxShadow = '';
                this.removeEventListener('invalid', a.invalidEventHandler);
                this.removeEventListener('keydown', a.keydownEventHandler);
            },

            //the following functions emulates the restore of :-moz-ui-invalid
            //when the user interacts with a form input control
            "keydownEventHandler": function()
            {
                this.addEventListener('blur', a.blurEventHandler);
            },

            "blurEventHandler": function()
            {
                this.checkValidity();
                this.removeEventListener('blur', a.blurEventHandler);
            }
        };

        return a;
    }

})();

用法:

在本机重置之前必须调用以下两种方法之一(调用表单的reset()方法):

<form name="formName" ...>...</form>

form('formName').registerReset();  //registers the event handlers once
form('formName').reset(); //registers the event handlers at the time reset is called 
                          //and then calls the form's native reset method, may be used 
                          //in place of the native reset

在我看来,无论是否使用ajax,无论用户是否曾尝试提交具有无效输入控件的表单,重置都应该删除该样式!我已经提交了一份错误报告,但到目前为止它并不是一个错误:https://bugzilla.mozilla.org/show_bug.cgi?id=903200

这也可以帮助其他人。