为什么d 是undefind

<%--
 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>

qq_T毛_0
浏览 1407回答 1
1回答

精慕门9254224

你先看看你的ajax 返回的data 是什么再说?最好debug 跟一下就清楚了!
打开App,查看更多内容
随时随地看视频慕课网APP