我已经尝试过(data =“”)和其他各种但是似乎都没有。
$.ajax({
url: "includes/peopleGoingList.php",
type: "POST",
dataType: "html",
data: {"ID": eventID},
success: function(data){
console.log(data);
if (data.length === 0) {
$("#dialog-attendees").html("<p>No one is going.. :[</p>");
} else {
$("#dialog-attendees").html(data);
}
});
答案 0 :(得分:3)
输出中可能存在任意空白区域,请尝试修剪
if ($.trim(data) == '') {