在我的应用程序中,我实现了拖放上传。当您在“放置区域”上拖动并按住图像时,放置区域会更改外观,并且会显示一条文本告诉您放置文件。
如果我取消删除文件,新的 CSS 和文本仍然存在,我需要刷新页面以使其恢复正常。如何在不刷新页面的情况下将 css 重置为正常状态?
提前致谢!
holder.ondragover = function () {
var information = "<div id='infoText2'>" + "<span>Drop the image here!</span>";
$('#holder').html(information);
this.className = 'hover';
return false;
};
// Rest of the code