Chrome / Mozilla中的背景图片未更改

时间:2013-09-30 07:38:46

标签: jquery

我有一些输入字段,用户应该填写所有这些字段以便注册。因此编写了一些jQuery代码,用于检测用户是否将控件留空,输入字段中会显示红色错误图像。

$("#Ad,#Soyad,#Eposta,#EpostaOnay,#Sifre,#SifreOnay").on("blur", function () {

            if ($(this).val().trim().length == 0) {
                $(this).css({ background: "url(images/core/input_error2.png) no-repeat !important" });
            }

        });
        $('#Ad,#Soyad,#Eposta,#EpostaOnay,#Sifre,#SifreOnay').on("focus", function () { 

            $(this).css('background', 'url(images/core/input2.png) no-repeat !important');

        });

此代码在IE中运行良好,但不适用于Chrome或Mozilla FF。我在Chrome上放了一些断点。它可以检测是否有任何元素被聚焦或聚焦。

0 个答案:

没有答案