查找一个类并将其添加到另一个元素
我需要找到一种方法从 li 获取类,然后将该类添加到包含我所有主要内容的 div 中。所以...
<div class="cntrWrap LI_CLASS_GOES_HERE">
HTML TEXT GOES HERE
</div>
有人可以帮忙吗?我尝试了很多不同的想法,但我对 jQuery 仍然很陌生。
I need to find a way to the get the class from a li and then add that class to a div that wraps all my main content. so...
<div class="structBody">
<ul id="ContentBreadCrumbsColor">
<li class="teal"></li>
</ul>
<div class="cntrWrap LI_CLASS_GOES_HERE">
HTML TEXT GOES HERE
</div>
</div>
Can anyone help? I have tried so many different ideas but I'm still very new to jQuery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以做到。
如果您还没有阅读过jQuery 官方网站文档,我会推荐它。
This should do it.
I'd recommend the official jQuery website's documentation, if you haven't already gone through it.