/** * Created by sevens on 2016/10/18. */ (function($) { 'use strict'; $(function() { var alertMSG = new AlertMSG(); //ajax post submit请求 $('body').on('click', '.ajax-post', function() { var target, query, form; var target_form = $(this).attr('target-form'); if (($(this).attr('type') == 'submit')) { form = $('#' + target_form); query = form.serialize(); target = $(this).attr('href'); $.post(target, query).success(function(data) { if (data.url) { alertMSG.showAlert({ msg:'

'+data.info+' 页面即将自动跳转~

', callback: function(){ setTimeout(function(){ window.location.href= data.url; }, 2000); } }); } else { alertMSG.showAlert({ msg:'

'+data.info+'

', }); } }); } return false; }); }); })(jQuery);