所以我有一个图片库的这个 js 代码:
(this.settings.update_window_hash) {
var thumb_link = this.images[this.current_index].thumb_link;
if (thumb_link.attr("id")) {
window.location.hash = "#image-"+ thumb_link.attr("id"); //#url
} else {
window.location.hash = "#image-"+ this.current_index;
};
};
因此,您可能已经假设这会将 $image-(int) 附加到 url。因此,如果我有一个包含多张图片的画廊,并且选择了第三张图片,则 url 将如下所示:mysite.com/gallery.html#image-3
都好。但我真的不喜欢将它附加到 url 的末尾。那么如果我完全删除这部分脚本有什么问题吗?因此,无论当前选择多少图片,网址都将如下所示:mysite.com/gallery.html
我已经测试过了,它工作正常。但我对 javascript 不是很有经验,我想确保我没有犯错。如果我 完全删除这个脚本可以吗?它会引起任何问题吗?
非常感谢。