窗口退出时的模态弹出 - 重置一次

时间:2016-04-26 18:38:48

标签: javascript twitter-bootstrap-3

当用户离开Window时,我想只使用一次模态。

$(document).mousemove(function(e) { if (e.clientY <= 1) { //Modal } }); 让我知道如何创建它。

1 个答案:

答案 0 :(得分:1)

假设您已经在HTML中创建了模态元素,那么我认为这应该是你想做的......

$(document).mousemove(function(e) {
  if (e.clientY <= 1 && modalShown != 1) {
    modalShown = 1;
    $('#myModal').modal('show');
  }
});