我有一个视图页面,并在其中应用了一个Jquery

<script type="text/javascript">
$(document).ready(function () {
    var hdrname = $('#headername').text();
    alert(hdrname);

    if (hdrname == "Pending Assignment") {
        $('#lst1').addClass('highlight1');
        alert("hcsgiahf");
        $('#tab2').removeClass('highlight1');
    }
    else if (hdrname == "Assigned With L1 Support") {
        alert($('#tab1').text());
        alert("hello");
        $('#tab1').removeClass('highlight1');
        $("#tab2").addClass("highlight1");
    }

    //To get No of call start

});
//To get No of call end




但是,当我运行我的页面CSS类Highlight1时,未将其应用于指定的ID,any1可以帮助我为什么会发生这种情况。

最佳答案

尝试

 if (hdrname == "Pending Assignment") {
    $('#tab1').addClass('highlight1');// i think you are wrong here
    alert("hcsgiahf");
    $('#tab2').removeClass('highlight1');
}
else if (hdrname == "Assigned With L1 Support") {
    alert($('#tab1').text());
    alert("hello");
    $('#tab1').removeClass('highlight1');
    $("#tab2").addClass("highlight1");
}


Your code works here

10-07 14:38