<%--
Created by IntelliJ IDEA.
User: jinchenmo
Date: 2017/7/11
Time: 20:26
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
<script src="jquery-3.2.1.js"></script>
</head>
<body>
姓名:
<input type="text" name="sname" id="a">
密码:
<input type="password" name="spassword" id="b">
<input type="button" id="buttons">
<P></P>
<script>
$(document).ready(function () {
$("#buttons").click(function () {
$.get("2.jsp", //这就是该页面
{ sname:$("#a").val(),spassword :$("#b").val()},
function (data) {
var d = data.sname;
alert(d)
}
);
})
})
</script>
</body>
</html>
精慕门9254224
相关分类