External Link Notification - JavaScript or JQuery

前端 未结 4 1384
隐瞒了意图╮
隐瞒了意图╮ 2021-01-26 00:31

I am looking for a way to set it up so that when an external link is clicked it will warn people that they are leaving the site. Preferably, it would darken the screen and displ

4条回答
  •  离开以前
    2021-01-26 00:59

    Try using confirm instead of alert since that will pause and wait for user input. You'll then need function(e){ e.preventDefault(); } to prevent the default link actions.

提交回复
热议问题