1

在我的应用程序中,我实现了拖放上传。当您在“放置区域”上拖动并按住图像时,放置区域会更改外观,并且会显示一条文本告诉您放置文件。

如果我取消删除文件,新的 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
4

1 回答 1

1

ondragend您可以尝试在收到事件时删除 div 并删除类名

holder.ondragend = function () {
  $('#intoText2').remove();
  this.removeClass();
};
于 2012-06-02T15:38:07.213 回答