gpt4 book ai didi

javascript - 如何更改包含所选 .class 的 div #id 的样式

转载 作者:太空宇宙 更新时间:2023-11-04 14:04:30 25 4
gpt4 key购买 nike

我正在尝试更改包含类 nazwa_klasy_display 的 div #info_frame 的样式,但我无法修复它。

$('.box').mouseenter(function() {       
//show up scores
$( this ).children( '.scores' ).css( 'display', 'block' );

nazwa_klasy = $( this ).attr('class').split(' ')[1];

nazwa_klasy_display = nazwa_klasy.split('_')[1];
if ($('#info_frame').has(nazwa_klasy_display))
{
$('#info_frame .'+nazwa_klasy_display).style.display ="block";
}
});

最佳答案

您正在将 jQuery 与纯 Js 混合使用:

要么你用

/* chain a jQuery method, e.g. show()  */
$('#info_frame.'+nazwa_klasy_display).show()

/* access to the dom node before using plain js */
$('#info_frame.'+nazwa_klasy_display).get(0).style.display = "block";

关于javascript - 如何更改包含所选 .class 的 div #id 的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21237160/

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