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.
如果我有 4 张图片
<img src="img/tracker/"/> <img src="img/tracked/"/> <img src="img/tracking/"/> <img src="img/track/"/>
我如何使用 src 选择最后 3 张图像不包含我尝试过$(img:not([src*="/tracker/"]))
$(img:not([src*="/tracker/"]))
$('img:not([src*="/tracker/"])')...
现场演示