我有带有工具提示的文件夹,例如“0 个条目”或“5 个条目”等。每次将某些内容放入文件夹时,我都需要此工具提示编号更新 1。标题并不总是从零开始,我需要更新 $(this) drop div,因为我有很多。这是工作小提琴http://jsfiddle.net/4ehSG/3
jQuery
$(document).tooltip();
var dropped =0;
$( ".draggable" ).draggable();
$( ".droppable" ).droppable({
drop: function( event, ui ) {
dropped++;
$( this )
.attr('title',dropped+' entries')
.addClass( "ui-state-highlight" )
.find( "p" )
.html( "Dropped!" );
$( ".draggable" ).fadeOut();
}
});
HTML
<div class="draggable ui-widget-content">
<p>Drag me to my target</p>
</div>
<div class="droppable ui-widget-header" title='2 entries'>
<p>Drop here</p>
</div>