Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一些我想做得更好的很棒的代码。
select: function(event, ui) { jQuery(this).siblings('div.hidden_fields').children('.poly_id').val(ui.item.user) }
它是selectjquery UI 自动完成的一部分。
select
你可以试试这个
jQuery('div.hidden_fields .poly_id',jQuery(this).parent()).val(...);
请记住,您始终可以为 jQuery 选择器提供上下文
jQuery("someselector", context)