我正在使用以下代码行
var selectedMedId = jQuery.grep(privateVariables.medIdData, function (n) {
if (n.DescriptionWithCode.toString().toUpperCase() === description.toString().toUpperCase()) {
return n;
}
});
我也尝试过
var selectedMedId = jQuery.grep(privateVariables.medIdData, function (n) {
return n.DescriptionWithCode.toString().toUpperCase() === description.toString().toUpperCase();
}
});
我想摆脱这个警告。