有没有办法将 lb-number 输出更改为不同的版本

Is there a way to change the lb-number output to a different version

我目前正在创建一个关于我们的页面,其中包含一个使用 lightbox2 的小画廊。

页面语言不会是英文,出于设计一致性和客户需求,我想更改 "Image x of y" "lb-dataContainer/lb-data/lb-number"

因为它是由 js 创建的跨度,我想我的答案当然会在那里。

PS:我想将 "Image x of y" 格式更改为 "Image x / y"格式也是如此。

我的网络开发职业生涯还很早,所以请原谅我的任何误解。

感谢您的宝贵时间!

可以在灯箱的示例页面上找到关于灯箱的这个问题和许多其他问题的答案: https://lokeshdhakar.com/projects/lightbox2/#examples

它说您可以使用选项 albumLabel 来更改标签 - 像这样:

lightbox.option({
  albumLabel: "Image %1 / %2"
});