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) }
これはselect、jqueryUIオートコンプリートの一部です。
select
あなたはこれを試すことができます
jQuery('div.hidden_fields .poly_id',jQuery(this).parent()).val(...);
jQuery Selector にはいつでもコンテキストを提供できることを忘れないでください
jQuery("someselector", context)