1

jqueryのアラートプラグインを使用していないときに完璧に機能するこのスクリプトを入手しました。しかし、アラートプラグインを使用する必要があり、チュートリアルから学んだ後、それを実装しました。しかし、スクリプトは機能していないようです。

<script type = "text/javascript">

$(document).ready(function() {

    var pos = $("tr.verify").attr('id');

    var frmId = $('#'+ pos).find("form").attr('id');

    $('#'+ frmId).click(function(event) {

    jConfirm('Are you sure you want to verify?', 'Confirmation Dialog', 
    function(r) {

        if(r==true)
        {   

        $.ajax({
        type: "POST",
        url: "verify.php",
        data: $("form#" + frmId).serialize(),
        success: function(msg){

            if(msg.indexOf("success") > -1)
            {
                //success in registaration
            var inputsub = $("form#" + frmId).find('input[type=submit]').attr('id');
            $('#' + inputsub).val('verified').attr('disabled','disabled');

            } //end of if
            else if(msg.indexOf("Error") > -1)
            {

                alert(msg);
            } //end of else if

            } // end of success event



            }); //end of ajax code



    }  // end of if r == true
    return false;

    }); //the alert code

    }); //end of form submit

    }); //Main document ready code

</script>
4

1 に答える 1

0

お返事ありがとうございます。私は何が間違っていたのかを理解しました..ドキュメントを読んで、古いバージョンのjQuery viz 1.2.2を使用していて、プラグインには1.2.6以降が必要であることがわかりました。これはばかげた間違いで、3 時間かかりました。とにかく注目に値する..ありがとう

于 2010-01-13T12:27:33.480 に答える