标签:action 输入密码 页面 pre sub cli 表单 body onclick
function login() { var userid = $("#username").val(); var userpwd = $("#pwd").val(); if (userid == "") { alert("登录失败,请输入账号"); return; } if (userpwd == "") { alert("登录失败,请输入密码"); return; } $.ajax({ url: "/Home/Login", data: { userid: userid, userpwd: userpwd }, type: "POST", success: function (data) { if (data == "ok") { location.href = "@Url.Action("Index", "Home")"; } else { alert("登录失败!"); } } }) return false; }
<button onclick="login();" >登陆</button>
这个按钮没有设置type属性,button会默然是submit;也就是就算没有添加属性都会有提交操作;
值 | 描述 |
---|---|
submit | 该按钮是提交按钮(除了 Internet Explorer,该值是其他浏览器的默认值)。 |
button | 该按钮是可点击的按钮(Internet Explorer 的默认值)。 |
reset | 该按钮是重置按钮(清除表单数据)。 |
加上 type="button" 后问题完美解决。<button type="button" onclick="login();" >登陆</button>
标签:action 输入密码 页面 pre sub cli 表单 body onclick
原文地址:http://www.cnblogs.com/caipz/p/6549912.html