在AJAX中将FORM里面的元素以JSON方式提交

在AJAX中将FORM里面的元素以JSON方式提交

$('#formID').on('submit', function () {
    $.ajax({
        url: 'submit.php',
        cache:  false,
        type: 'POST',
        data : $('#formID').serialize(),
        success:  function(json) {
            alert('all done');
        }
    });
});

你可能感兴趣的:(在AJAX中将FORM里面的元素以JSON方式提交)