gpt4 book ai didi

jquery - 如何将ajax的成功函数的结果与字符串进行比较

转载 作者:行者123 更新时间:2023-12-03 22:29:22 26 4
gpt4 key购买 nike

 $.ajax({
type: "post",
url: "test.jsp",
data: "user="+name.val(),
success: function(msg) {

$('#result').hide();

$("#result").html(msg)
.fadeIn("slow");
if( msg =="available")
{

alert(msg);
}


}
});

test.jsp
<h1>
<%
String user=request.getParameter("user");
if(user.equals("prerna"))
out.print("available");
else
out.print("not available");
%>
</h1>

我想将 success 函数返回的值与字符串进行比较但上面的代码不起作用我还想将 css 类添加到“#result”id 中。警报框没有出现。

最佳答案

有一个空格。使用 $.trim() 函数可以删除所有空格。有效!!!

$.ajax({
type: "GET",
url: url,
success: function(data) {
var result = $.trim(data);
if(result==="available"){
alert("available");
return false;
}
}
});

关于jquery - 如何将ajax的成功函数的结果与字符串进行比较,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4946485/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com