2015-06-27 75 views

回答

0

目前已經在ATT jqueryui.com例子來恢復已刪除項目的功能。

// image recycle function 
var trash_icon = "<a href='link/to/trash/script/when/we/have/js/off' title='Delete this image' class='ui-icon ui-icon-trash'>Delete image</a>"; 
function recycleImage($item) { 
    $item.fadeOut(function() { 
    $item 
     .find("a.ui-icon-refresh") 
     .remove() 
     .end() 
     .css("width", "96px") 
     .append(trash_icon) 
     .find("img") 
     .css("height", "72px") 
     .end() 
     .appendTo($gallery) 
     .fadeIn(); 
    }); 
} 

也應該爲你工作。