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 中的第二个输入元素。我一直在尝试这样的事情(没有太多运气):
$("#parentdiv :input:first-child").addClass("bad")
谢谢,
$('#parentdiv :input:nth-child(2)').addClass("bad")