我在网站中实现JQuery库时遇到问题。我正在处理的网页可以在这里找到:Website with gallery
在索引页面(无图库)中,单击链接转到图库不会完全加载它,尽管显示静态资源。刷新浏览器修复了这个问题。我认为这个问题与
有关$(window).load(function() {
$toolbar.data("imageViewMode",$defaultViewMode); //default view mode
ImageViewMode($toolbar.data("imageViewMode"));
//cache vars
$customScrollBox=$("#customScrollBox");
$customScrollBox_container=$("#customScrollBox.container");
$customScrollBox.height($customScrollBox_container.height());
//resize browser window functions
$(window).resize(function() {
FullScreenBackground("#bgimg"); //scale bg image
});
LargeImageLoad($bgimg);
});
我试过了
$(document).ready(function()
同样,尽管画廊的装载方式与上面略有不同,但仍然没有完全正常工作。有趣的是,当我输入目标的URL时,它加载得很好。
其他SO文章指出了JQuery Mobile的问题,但我不相信我使用它,除非它嵌入在jquery / jquery UI中?
非常感谢任何帮助!