使用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 中运行良好。有任何想法吗 ?