gpt4 book ai didi

javascript - 在类选择器中传递 jQuery this.id

转载 作者:行者123 更新时间:2023-11-30 08:01:25 25 4
gpt4 key购买 nike

我有两个不同的输入字段,它使用提前输入。

在第一个字段中,我们输入国家/地区,在其他字段中,我们应根据国家/地区选择城市。所以我正在制作一个 javascript/jQuery 函数,以传递字段 ID,以了解我选择了 3 对 Country+City 对中的哪对。

我正在使用

 $('.demoTypeAhead').typeahead({
source: getCityForCountry($(this).id)
});

在函数 getCityForCountry 中,我想传递一个特定于字段的 ID,但是 $(this) 或 this 都不起作用,因为它返回整个 DOM 对象。

最佳答案

jQuery 对象没有 .id 属性。你要么想要

this.id // or
$(this).prop("id") // or even
$(this).attr("id")

关于javascript - 在类选择器中传递 jQuery this.id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27190801/

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