<%@ 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!!!!!!
添加回答
举报
0/150
提交
取消