1

现在已经尝试了几个小时,似乎无法找到问题所在。 http://sabinequardon.dk/poooort/index.html

我已经确保它链接到正确的文件等,但它只是没有在 prettyphoto 中打开。这是概率 一个非常简单的问题,也许是我已经主演了太久了:-(

谢谢!

4

1 回答 1

4

你永远不会调用 prettyPhoto...

$(document).ready(function(){
  $("a[rel^='prettyPhoto']").prettyPhoto();
});

您首先要加载 jQuery 两次。而且这种开销是不必要的。其次,您需要将除我上面放置的脚本之外的所有脚本移动到该区域中。

...
<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>
于 2012-08-06T15:24:21.037 回答