web-dev-qa-db-ja.com

リンクを禁止し、確認してから場所jqueryに移動する

このようなリンクがあります。

<a href="delete.php?id=1" class="delete">Delete</a>

ユーザーがそれをクリックした場合。確認がポップアップし、ユーザーが[はい]をクリックした場合にのみ、実際のURLに移動します。

これがデフォルトの動作を妨げる可能性があることを知っています

    function show_confirm()
    {
    var r=confirm("Are you sure you want to delete?");
    if (r==true)   {  **//what to do here?!!** }

    }    


    $('.delete').click(function(event) {
    event.preventDefault();
    show_confirm()
    });

しかし、確認後、そのリンクを続行するか、そのリンクにajax投稿を送信するにはどうすればよいですか?

20
esafwan

あなたはそれをすべてワンクリックで行うことができます:

$('.delete').click(function(event) {
    event.preventDefault();
    var r=confirm("Are you sure you want to delete?");
    if (r==true)   {  
       window.location = $(this).attr('href');
    }

});

または、クリックした要素を関数に渡すことでそれを行うことができます。

function show_confirm(obj){
    var r=confirm("Are you sure you want to delete?");
    if (r==true)  
       window.location = obj.attr('href');
}    
$('.delete').click(function(event) {
    event.preventDefault();
    show_confirm($(this));

});
33
locrizak

これを理解するのに少し時間がかかったので、自分の解決策を投稿すると思いました。

$('.delete').click(function(e){
    if(confirm('Are you sure?')){
        // The user pressed OK
        // Do nothing, the link will continue to be opened normally
    } else {
        // The user pressed Cancel, so prevent the link from opening
        e.preventDefault();
    }
}

間違った方法を確認することを考えていました。確認すると、サイトが自動的に開かなくなり、ユーザーの入力を待ちます。つまり、基本的にはpreventDefaultをelseに移動する必要があります。

つまり、[キャンセル]をクリックした場合にのみリンクが開かないようにします。これにより、たとえばtarget = "_ blank"命令がある場合など、リンクが通常どおりに機能するようになります。

3
Travis Heeter
_function show_confirm(url){
    var r=confirm("Are you sure you want to delete?");
    if (r==true){
        location.top.href = url;
    }
}    


$('.delete').click(function(event) {
    event.preventDefault();
    show_confirm($(this).attr('href'));
});
_

Ajaxを使用する場合は、_location.top.href = url;_を$.get(url);に置き換えることができます。

2
Paulpro
function show_confirm(elem)
{
    var r=confirm("Are you sure you want to delete?");
    if (r==true) { 
        window.location.href = elem.href;
    }
}    

$('.delete').click(function(event) {
    event.preventDefault();
    show_confirm(this)
});
2
ChristopheCVB

関数show_confirmのコードを最適化するには、以下を使用してみてください:

function show_confirm(obj){
   if(confirm("Are you sure you want to delete?")) window.location = obj.attr('href');
}
1
Chanraksmey

これは短い形式です:

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

ダウンロード/リンクの確認のためにウェブサイトで使用しています。

1
Matteo Conta

あなたはできる

function show_confirm()
    {
    if(confirm("Are you sure you want to delete?")){
        //make ajax call
     }else{

          //no ajax call
     }

    }    
0
 $('.delete').click(function() {

   if (confirm('Are you sure?')) {
     $.post($(this).attr('href'), function() {
       // Delete is OK, update the table or whatever has to be done after a succesfull delete
      ....
     }
   }

   return false;

}
0
Claudio

アラート/確認を使用したい場合、これが最良の方法です(私は Bootstrap Confirmation または bootbox を使用することを好みます):

$('.confirm-delete').click( function( event ) {
    if ( !confirm('Are you sure?') ) event.preventDefault();
});
0
Roy Shoa