.css函数意外的标记ILLEGAL jquery

时间:2016-01-21 22:50:46

标签: javascript jquery css

由于某些原因,在此代码中我收到一条错误消息     $('#emailError')。css({'display':'block','background-color':#e35152});

Uncaught SyntaxError: Unexpected token ILLEGAL

我不知道为什么

这里是所有的javascript。

function confirmEmail() {
        var email      = document.getElementById('email').value;
        var confirmail = document.getElementById('emailConfirm').value;
        if (email != confirmail) {
            $('#emailError').css({'display': 'block', 'background-color': #e35152});
             //document.getElementById('emailError').style.display = "block";
             //document.getElementById('emailError').style.background ='#e35152';
        };
    };

这是我的HTML

     <div class="form-group">
         <label>Email *</label>
         <input type="email" name="email" class="form-control" required="required">
    </div>
    <div class="form-group">
       <label>Confirm Email *</label>
       <input type="email" name="emailConfirm" class="form-control" required="required" onblur="confirmEmail()">
       <span id="emailError" style="display: none;">Your emails must match</span>
    </div>

1 个答案:

答案 0 :(得分:5)

你错过了''的颜色:

//$('#emailError').css({'display': 'block', 'background-color': #e35152});
$('#emailError').css({'display': 'block', 'background-color': '#e35152'});
                                                              ^here & ^here