我想知道我们如何在 jquery 脚本中解析来自 ajax 的响应。
编辑:
这是我的 jquery:jquery_test.jsp
<h1>Hello World!</h1>
<select id="body_id" name="current_session" >
<option value="Winter">Winter</option>
<option value="Monsoon">Monsoon</option>
</select>
<script>
$( "#stream" ).change(function() {
var selectedVal=$("#stream option:selected").val();
$.ajax({
url:"checkonserver.jsp?current_session="+selectedVal,
success:function(msg){
alert(msg);
}
});
});
</script>
</body>
这是我的 ajax 代码(checkonserver.jsp)
<body id="body_id" >
<% if(request.getParameter("current_session").toString().equals("Winter")){%>
It's COLD
<%
}
else{
%>
It's HOT
<%}%>
</body>
我得到了从 ajax 到 jquery 的 msg 作为休闲(.jsp 页面)//如果你在列表中选择 monsoon
<head>
<body>
It's HOT
<\body>
<\head>
我的问题是如何解析msg
以获取上述jsp体内的数据。例如:只有its HOT
我想要作为浏览器的输出。不是上面的整个 html 文件