document.ondragover = function (e) { e.preventDefault(); };
document.ondrop = function (e) { e.preventDefault(); };
$(document).on("dragstart", function (e) {
    return false;
});

  

相关文章:

  • 2022-12-23
  • 2021-08-01
  • 2022-12-23
  • 2021-04-16
  • 2021-07-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-16
  • 2021-10-19
  • 2022-12-23
  • 2021-06-09
  • 2022-01-05
  • 2021-10-26
  • 2021-10-07
相关资源
相似解决方案