如何将类 .point-tooltip 添加到 .points_data div 内的每个 anchor 链接,该 div 的标题属性上有文本(换句话说,这不是-6ren">
gpt4 book ai didi

php - 向标题属性上有文本的每个元素添加一个类

转载 作者:行者123 更新时间:2023-12-01 03:20:47 25 4
gpt4 key购买 nike

我正在动态生成标题属性的内容:

<div class="point_data">
<a href="#" title="<?php the_sub_field('points_description'); ?>"></a>

如何将类 .point-tooltip 添加到 .points_data div 内的每个 anchor 链接,该 div 的标题属性上有文本(换句话说,这不是空)?

最佳答案

使用这个:

$('.point_data a[title]').addClass('point-tooltip');

如果标题可以为空,请使用:

$('.point_data a[title][title!=""]').addClass('point-tooltip');

attribute-not-equal-selector :

Description: Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.

关于php - 向标题属性上有文本的每个元素添加一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10292571/

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