gpt4 book ai didi

javascript - hasClass() 在 IE 中不起作用?

转载 作者:行者123 更新时间:2023-12-03 12:38:02 26 4
gpt4 key购买 nike

我收到Microsoft JScript 运行时错误:对象不支持此属性或方法当我使用 IE8 时。

if (this.hasClass('imgchargelocation')) {
CallPopUp($(this).closest('tr')[0].sectionRowIndex, 'chargelocation');
}

我也尝试过这个,但同样的错误..

if (this.attr('class', 'imgchargelocation')) {
CallPopUp($(this).closest('tr')[0].sectionRowIndex, 'chargelocation');
}

hasClass 似乎在 Chrome 中工作得很好。

最佳答案

看来您正在使用 jQuery,如果是,请像这样修复您的语法

if ($(this).hasClass('imgchargelocation')) {
CallPopUp($(this).closest('tr')[0].sectionRowIndex, 'chargelocation');
}

关于javascript - hasClass() 在 IE 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23646336/

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