<%-- ?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>
為什么d 是undefind
qq_T毛_0
2017-07-11 21:05:15