1、
<input class="put" type="text" placeholder="请输入您的用户名" id='account' value=""/>
2、$.ajax 获取输入的值:
//登录 function login(){ var account =$("#account").val(); $.ajax({ type: "POST", dataType: "json", url:"/login", data:{account:account}, success: function (data) { if (data.status == "0") { $("#errorTips").text(data.errMsg).show(); $("#loginBtn").text("登 录"); }else{ window.location.href="/home"; } } }); }