gpt4 book ai didi

javascript - css 类在使用 jquery 的 mvc4 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 13:07:57 24 4
gpt4 key购买 nike

我有一个 View 页面,我在其中应用了一个 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

关于javascript - css 类在使用 jquery 的 mvc4 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24932767/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com