window.Helper = { // 提示 alert: function (msg, typ) { var alertDiv = $('
' + msg + '
') $('body').append(alertDiv) alertDiv.animate({top: 8}) setTimeout(function () { alertDiv.remove() }, 2000) } }