撤销功能

// 撤销
function handleUndo() {
  // 调用浏览器api
  if (document.execCommand) {
      document.execCommand('undo')
  } else {
    // 浏览器api不支持的情况
  }
}
posted @ 2023-06-06 16:04  是大壳子啊  阅读(19)  评论(0编辑  收藏  举报