Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找执行以下操作。
如果父 div 的类为“open”,则将类“on”添加到元素(h3)
jQuery
$('h3').parent('.open').addClass('on');
我认为您可以通过简单的 jquery 示例来获得它。以下代码段会有所帮助。
$('h3').each(function(){ if($(this).parent().attr("class")=="open"){ $(this).attr("class","on") } });
通过以下单行代码可以实现相同的输出
$(".open h3").attr('class',"on");