我正在使用此代码来过滤plist数组中的某些字符串:
var header = response.find("h2").text();
我现在需要过滤布尔值为“YES”或“NO”的项目。我调整了上面的代码并提出了以下内容:
$.ajax({
type: "GET",
url: "test2.php",
data: dataString
}).done(function(data) {
var header = data.find("h2:first").text();
});
但它不起作用。有谁知道如何过滤布尔键值为TRUE / YES的项目?