我想了解回收图片链接的工作原理,
它指向以下网址
链路/到/垃圾/脚本/时/ WE /有无/ JS /关
这究竟是做什么的?
答案 0 :(得分:1)
// 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) {
// fade the item out
$item.fadeOut(function() {
// when the item is done fading remove the refresh icon
$item.find('a.ui-icon-refresh').remove();
// then set the width of the item
$item.css('width','96px')
//add the trash icon to the item in place of the recycle icon
.append(trash_icon)
//Then find the image and set the height on that
.find('img').css('height','72px')
//Back to the item and append it to the gallery
.end().appendTo($gallery)
//fade it back in
.fadeIn();
});
}
垃圾邮件图标的href被认为是一个在关闭javascript时可以使用的网址。这个想法是当你拖动东西然后点击最有可能发出ajax请求的图标时,将这些操作保存在服务器上。当用户关闭javascript时,应该可以使用相同的操作。