$("#navopen").click(function(){ $("#mobinav").slideDown(500); }); $("#navclose").click(function(){ $("#mobinav").slideUp(500); }); jQuery(document).ready(function($) { $('.theme-login').click(function(){ $.get('/auth', function(data) { if (data.flag) { window.location.href = '/information'; } else { $('.theme-popover-mask').fadeIn(100); $('.theme-popover').slideDown(200); } }) }) $('#login').click(function(){ var username = $('#username').val(); var password = $('#password').val(); var token = $('#token').val(); if ('' == username) { error('用户名不能为空'); return; } if ('' == password) { error('密码不能为空'); return; } $.post('/login', {username:username, password:password, token:token}, function(data) { if (data.flag) { window.location.href = '/information'; } else { error(data.message); } }) }) $('.theme-poptit .close').click(function(){ $('.theme-popover-mask').fadeOut(100); $('.theme-popover').slideUp(200); }) }) function error(info) { $('#tips').text(info); $('#tips').css('color', 'red'); }