- 复制并修改基础表单代码
<%-- 通过账号与密码登录用户 --%>
<form id="ff" method="post">
<div>
<label for="username">用户名:</label>
<input class="easyui-textbox" name="username" id="username" data-options="iconCls:'icon-man'"
style="width:300px">
</div>
<div>
<label for="password">密码:</label>
<input class="easyui-textbox" name="password" id="password" data-options="iconCls:'icon-lock'"
style="width:300px">
</div>
<input type="button" value="登录" onclick="sub()">
</form>
<script>
function sub() {
$('#ff').form('submit', {
// 提交路径
url: "getUser.do",
// 提交操作
onSubmit: function () {
// do some check
// return false to prevent submit;
},
// 返回成功后的操作
success: function (data) {
alert(data)
}
});
}
</script>