您现在的位置:首页 >> 前端 >> 内容

怎样实现判断当前页面是否修改内容,并在离开页面的时候给出提示?

时间:2018/4/23 15:04:56 点击:

  核心提示:怎样实现判断当前页面是否修改内容,并在离开页面的时候给出提示?let _this=this;window.onbeforeunload = function() {let nowOrderVo=JSO...

怎样实现判断当前页面是否修改内容,并在离开页面的时候给出提示?

let _this=this;
window.onbeforeunload = function() {
  let nowOrderVo=JSON.stringify(_this.orderVo);
  if (_this.copyOrderVo!==nowOrderVo) {
    try {
      return "当前修改尚未保存,是否离开?";
    } catch (err) {}
  }
};

作者:网络 来源:阿之阿佐