1

这应该是基本的,我以前没有这样做过..您只需点击一个链接,然后“取消”或“确定” - 对于当前脚本,点击取消也会重定向您。当它应该让你留在当前页面时。

这是用于移动设备的,我是否也应该使用 .on 来代替?

js

$("a").click(function(event){
    if (confirm('click ok to continue, or cancel to stay on page')) {
    }
});

谢谢

4

1 回答 1

1

尝试preventDefault()

$("a").click(function(event){
    event.preventDefault();

    if (confirm('click ok to continue, or cancel to stay on page')) {

    }
});

或者:

$("a").click(function(event){

    var answer = confirm('click ok to continue, or cancel to stay on page');

    if(answer){
        // go to destination
        return true;
    }else{
        // cancel
        return false;
    }
});
于 2013-03-07T14:59:03.723 回答