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.
誰でも助けることができます。フォーム上のいくつかの要素を選択しようとしていますが、要素が動的に追加されているため、これが問題を引き起こし始めています。
選択する必要のある要素は、各子div内の2番目の入力要素です。私はこれに沿って何かを試みてきました(あまり運がない):
$("#parentdiv :input:first-child").addClass("bad")
ありがとう、
$('#parentdiv :input:nth-child(2)').addClass("bad")