如何在jQuery中选择data-id和data-action

前端之家收集整理的这篇文章主要介绍了如何在jQuery中选择data-id和data-action前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是对这个问题的后续行动: Using javascript:function syntax versus jQuery selector to make Ajax calls

我该如何选择这个片段?

<div data-id="54" data-action="follow-global-id" class="add-to-list">here is my answer</div>

我的id值在下面,尝试这个

$('.add-to-list[data-action|="action-follow-global-id"][data-id|=id]').text('here is the things jtjt in the id value');

但没有骰子.需要和他们在一起.

thx寻求帮助

解决方法

没有测试,但应该工作:
var id = 54;
$('.add-to-list[data-action=follow-global-id][data-id='+id+']').text('something');
原文链接:https://www.f2er.com/jquery/180299.html

猜你在找的jQuery相关文章