jquery中的submit方法怎么用?
submit()方法綁定在form表單元素上,當綁定的表單被提交時(通過點擊按鈕、按回車鍵等),會觸發該方法。實例:
<form id="form1" autocomplete="off"> <input type="text" name="model.username"/> <input type="password" name="model.password"/> <input type="submit" value="登錄" /> </form>
$('#form1').submit(function() { $.ajax({ url: '/index!login.do', data: $('#form1').serialize(), type: "POST", dataType: "json", cache: false, success: function(data) { if (data.login == true || data.login == "true") { // 登錄成功 location.replace('/main/index.do'); } else { alert('登錄失敗!請檢查用戶名或密碼'); } } });});
上一篇模擬人生2的秘籍怎么用
下一篇vue怎么鑒權