jqueryを使用してクリックされたスパンのIDを収集するにはどうすればよいですか?
私が試したこと
$('.move-up').click(function(){
if ($(this).prev())
$(this).parent().insertBefore($(this).parent().prev());
});
$('.move-down').click(function(){
if ($(this).next())
$(this).parent().insertAfter($(this).parent().next());
});
var ids
$('span[id^="text_"]').click(function() {
$(this).toggleClass("highlight");
ids += $('span[id^="text_"]');
alert(ids);
});