如何在下拉列表中过滤Ajax数据

时间:2019-10-15 09:20:51

标签: javascript jquery ajax

我有一个我无法调整的Ajax下拉列表中的数据。 但是,我只想显示名称中具有特定字符串部分的下拉元素(“交付”)。

我无法直接调整Ajax列表,那么如何操纵某些元素的可见性?

这是下拉列表中当前使用的代码的一部分:

a.dropCityChanged = function() {
    a.dropCities && (a.loading.dropLocations = !0, e.getAjax({
        country: a.form.dropCountry.id,
        city: a.form.dropCity.id
    }).then(function(b) {
        a.loading.dropLocations = null, a.dropLocations = b, 1 === b.length && (a.form.dropLocation = b[0])
    }))
}

但是我只想显示其名称中具有特定字符串的dropLocations

我尝试了一些操作,例如(name〜=“ Delivery”)和var.includes(“ Delivery”),但到目前为止都没有成功。

从下拉菜单中添加了一个屏幕截图,也许更清楚了,我只希望显示“酒店交付”的条目: dropdown-example

非常感谢您的帮助。

谢谢。

0 个答案:

没有答案