web-dev-qa-db-ja.com

confirm()を使用したjQuery.ajax()呼び出しのインターセプト

JQueryを介してリンクにバインドされたajax呼び出しがあり、確認ダイアログでインターセプトしたい。ただし、どのオプションが選択されているかに関係なく(ユーザーがダイアログを閉じただけでも)、ajax呼び出しは発生します。

同期コンテキストのように確認を機能させる方法はありますか?

HTML:

<a href="#" class="removeItem delete">remove</a>

jQuery:

$('.delete').click(function () {
    confirm('Are you sure you want to delete this?');
});


$('.removeItem').click(function (event) {
    event.preventDefault();

    $.ajax({
        url: 'myUrl',
        type: "POST",
        data: {
            // data stuff here
        },
        success: function () {
            // does some stuff here...
        }
    });
});
22
Faust
$('.removeItem').click(function (event) {
    if (confirm('Are you sure you want to delete this?')) {
        $.ajax({
            url: 'myUrl',
            type: "POST",
            data: {
                // data stuff here
            },
            success: function () {
                // does some stuff here...
            }
        });
    }
});
94
Грозный