prettyPhoto不工作,控制台没有错误

时间:2013-05-27 21:50:16

标签: jquery prettyphoto

以下是我<head>中的代码:

<!-- Pretty Photo -->
<link rel="stylesheet" href="/css/prettyPhoto.css" type="text/css" media="screen" title="prettyPhoto main stylesheet" charset="utf-8" />
<script src="/js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>

这是我想要加载到查看器中的图像。

<div class="altImage">
    <a href="http://scoutsamerica.com/uploads/485604_10201093620571706_1239548317_n_716437.jpg" rel="prettyPhoto">
        <img src="http://scoutsamerica.com/uploads/485604_10201093620571706_1239548317_n_716437.jpg">
    </a>
</div>

我已经好几十次了,不知道为什么它不起作用。有什么想法吗?

2 个答案:

答案 0 :(得分:6)

根据文件:

<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto();
});
</script>

来源:http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/prettyphoto-faqs/

您还需要导入标准jQuery库以使用jQuery插件!

答案 1 :(得分:1)

tymeJV的答案很有帮助,但仍然没有奏效。但这确实如此:

<script type="text/javascript" charset="utf-8">
jQuery.noConflict();
jQuery( document ).ready(function( $ ) {
    $("a[rel^='prettyPhoto']").prettyPhoto();
});

</script>