//回车键登录操作 function jumpPage(e){ var keycode = window.event ? e.keyCode : e.which;//获取按键编码 if(keycode == 13){ loginBtns() } }