任何人都知道如何在 windows.location.reload(true) 之后保留 post 参数?
function handler(event,ui)
{
$(this).find(".thumb").remove();
$(this).append('<img class="thumb" src="'+ui.draggable.attr('src')+'">');
imageurl = ui.draggable.attr('src');
$.ajax({
type: "POST",
url: 'www.check.com.sg/',
data: {name: imageurl},
complete:function(){
window.location.reload(true);
}
});
}
如果我在页面上重新加载。post 参数将被销毁