现在已经试了好几个小时,似乎无法找到问题所在。 http://sabinequardon.dk/poooort/index.html
我已经确定它链接到正确的文件等,但它不会在prettyphoto中打开。 这是可能的。一个非常简单的问题,也许是我刚刚主演了太长时间: - (
谢谢!
答案 0 :(得分:4)
你永远不会调用prettyPhoto ......
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
你首先加载jQuery两次。而这种开销是不必要的。其次,您需要将我放在上面的所有脚本BESIDES移动到该区域。
...
<head>
<script src="assets/js/jquery-1.6.1.min.js" type="text/javascript"></script>
<script src="assets/js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="assets/js/jquery.quicksand.js"></script>
<script src="assets/js/script.js"></script>
</head>
<body>
...
<!---end of the body-->
<script type="text/javascript">
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>
</body>