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.
所以我正在尝试这个:inner.children('.image:not(dont):last-child').width();
inner.children('.image:not(dont):last-child').width();
结合 not(classname) 和 :last-child 的正确方法是什么?
尝试
inner.children('.image:last-child:not(.dont)').width()