ページに一連のa
タグがあります。それらはすべて同じで、次のようになります。
<a class="follow-user 50126cec60de7d7467000003" data-followers_count="1 Follower" href="#">
Test User
</a>
a
のすべての要素を反復して変更しようとしていdata-followers_count
ます。エラーが返されなくても、そうすることができません。
$("body").on("click", ".btn-follow", function(e) {
var el, linkContent;
e.preventDefault();
el = $(this);
user_id = '50126cec60de7d7467000003';
linkContent = $(document).find('.follow-user.' + user_id);
$.each(linkContent, function(index) {
$(this).data('followers_count', 'new count');
//alert('Changed to ' + $(this).data('followers_count'));
});
});
jsFiddle は次のとおりです: http://jsfiddle.net/netwire88/Zrrvq/2/
何か案は?