gpt4 book ai didi

jquery - 修改某个类的所有html

转载 作者:行者123 更新时间:2023-12-03 22:54:30 27 4
gpt4 key购买 nike

我有这个

<p class="comment_date" title="a">c</p>
<p class="comment_date" title="b">b</p>

我想将标题放在任何元素的 html 中。所以我尝试这样做:

$(".comment_date").html($('.comment_date').attr("title"));

但是这是错误的

我该怎么做?

谢谢

最佳答案

$('.comment_date').each(function() {
$(this).html( $(this).attr('title') );
});

认为这应该可以实现 - 如果这不是您想要的,请告诉我。

检查title属性长度是否为>0可能是值得的。对于此类情况,最好使用 .each,否则,如果不使用 .each,您就会将某些内容设置为多个元素值的组合值。

关于jquery - 修改某个类的所有html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1797055/

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