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.
晚安。我正在使用 Colorbox,但我有一个问题:例如,我有一个从 1 到 10 的 colorbox 图像列表。
如何通过单击不同的按钮打开带有起始图像为图片编号 5/10 的颜色框?
谢谢大家。
又快又脏:
$('a').eq(5).click();
只需选择您通常单击图像 5 的 a-tag 并触发单击它。