博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ajax jquery
阅读量:6497 次
发布时间:2019-06-24

本文共 1971 字,大约阅读时间需要 6 分钟。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/tr/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gbk" />
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="no-cache, must-revalidate">
<meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT">
<link rel="stylesheet" href="index.css" type="text/css" />
<script type="text/javascript" src="jquery-1.7.2.js"></script>

<script type="text/javascript">
$($("userForm").click(function() {
submitForm();
return false;//阻止非IE浏览器表单提交
}));
function submitForm() {
var userNameVal = $("#userName").val();
var passWordVal = $("#passWord").val();
alert(userNameVal);
$.ajax({
type : "post",
url : "loginAction.action",
dataType : "json",
data : {
"user.userName" : userNameVal,
"user.passWord" : passWordVal
}
});

}

</script>
<title>登陆</title>
</head>
<body>
<div class="login">

 

<form name="userForm" method="post" οnsubmit="return false;" >

<table cellSpacing=0 cellPadding=0 width=230 border=0>
<tr height=5>
<td width=5></td>
<td width=56></td>
<td></td>
</tr>
<tr height=36>
<td></td>
<td>
用户名
</td>
<td>
<input
style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid"
maxLength=30 size=24 id="userName">
</td>
</tr>
<tr height=36>
<td>
&nbsp;

</td>

<td>
口 令
</td>
<td>
<input
style="BORDER-RIGHT: #000000 1px solid; BORDER-TOP: #000000 1px solid; BORDER-LEFT: #000000 1px solid; BORDER-BOTTOM: #000000 1px solid"
type="password" maxLength=30 size=24 id="passWord">
</td>
</tr>
<tr height=5>
<td colSpan=3></td>
</tr>
<tr>
<td>
&nbsp;

 

</td>

<td>

</td>
<td>
<input id="submitButton" type=image height=18 width=70
src="images/bt_login.gif" οnclick="submitForm()">
</td>
</tr>
</table>
</form>

<div />
</body>
</html>

转载于:https://www.cnblogs.com/kisstherain/p/4445675.html

你可能感兴趣的文章
【转】第三节 UNIX文件系统结构
查看>>
为什么sql里面not in后面的子查询如果有记录为NULL的,主查询就查不到记录
查看>>
Angular7里面实现 debounce search
查看>>
Linux 内核链表
查看>>
git学习------>Git 分支管理最佳实践
查看>>
括号和出栈所有序列问题
查看>>
第一次操刀数据库分表的教训与经验
查看>>
录音声音小
查看>>
Ubuntu 12.04 安装 Chrome浏览器
查看>>
java 反射
查看>>
ORACLE物化视图(物理视图)
查看>>
android 读取json数据(遍历JSONObject和JSONArray)(转)
查看>>
UIScrollView中的手势
查看>>
递归和迭代的差别
查看>>
基于jquery的可拖动div
查看>>
可以简易设置文字内边距的EdgeInsetsLabel
查看>>
[詹兴致矩阵论习题参考解答]习题1.3
查看>>
Android Fragment的使用
查看>>
mysql半同步复制实现
查看>>
沙朗javascript总结一下(一)---基础知识
查看>>