我刚刚将我的网站设置为使用 CDN,这一切都按计划进行,并且大部分都按预期工作 - 除了我用于图像的 colorbox 之外。
我感觉它不再起作用了,因为所有图像的末尾都有一个查询字符串(例如image.png?9d7bd4
),这破坏了我的 jQuery 选择器:
/* colorbox - use it on all links to images */
$('a[href$=".jpg"],a[href$=".jpeg"],a[href$=".png"],a[href$=".gif"]').colorbox({
'rel': 'images',
'photo': true,
'maxWidth': '90%',
'maxHeight': '90%'
});
有人可以帮我重写 jQuery 代码以使其工作吗?谢谢你。