如何使用 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);
});