gpt4 book ai didi

javascript - 如何在使用jquery替换类后添加类

转载 作者:行者123 更新时间:2023-11-28 04:16:15 25 4
gpt4 key购买 nike

实际上,我有下面给出的代码。

$('p').replaceWith(function() {
return $('<div>', {
html: $(this).html()
})
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

实际上,我替换了所有<p>带有 <div> 的标签它工作正常,但现在我想在 <div> 中添加一个类那么我该如何添加呢?

最佳答案

对生成的元素使用addClass()方法

return $('<div>', {html:$(this).html()}).addClass('thisClass')

$('p').replaceWith(function() {
return $('<div>', {
html: $(this).html()
}).addClass('thisClass')
});
.thisClass {
color: red
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>p1
</p>
<p>p2
</p>

关于javascript - 如何在使用jquery替换类后添加类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50855507/

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