0

http://malsup.github.com/jquery.form.jsプラグインを使用します。

$(document).on('click','button.submitButton', function(e){

      var options = { 
        target:'#comment_results',  
        success: function() { 
                $('#comment_results').fadeIn('slow');
                $('#status_notification').fadeOut('slow');          
            } 
    }; 

    // pass options to ajaxForm 
    $(this).closest('form').ajaxForm(options);
    $(this).closest('form').ajaxSubmit();

     e.preventDefault(); // stop the browser from following the link 
    });

Internet Explorer バージョン 10 で、ブラウザがリンクをたどるのを止めません。firefox と chrome で問題なく動作します。何か案は ?

4

0 に答える 0