<%@ 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", //2.jsp就是该页面本身
{sname: $("#a").val(), spassword: $("#b")},
function (data) {
$("p").html(data)}
);
})
})
</script>
</body>
为什么点击按钮会出现下图情况
而不是出现 填写的姓名框的value和密码框的value!!!!!!
暴躁的代码
相关分类