这是对这个问题的后续行动:
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');