4

我使用 3.1.4 版的漂亮照片。(http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/)。我想从 URL 中删除“#prettyphoto[iframe]/number/”。我设置了 deeplinking:false 但这无济于事。我知道这可能是这些功能的问题:

function getHashtag(){url=location.href;hashtag=(url.indexOf('#prettyPhoto')!==-1)?decodeURI(url.substring(url.indexOf('#prettyPhoto')+1,url.length)):false;return hashtag;};
function setHashtag(){if(typeof theRel=='undefined')return;location.hash=theRel+'/'+rel_index+'/';};
function clearHashtag(){if(location.href.indexOf('#prettyPhoto')!==-1)location.hash="prettyPhoto";}

任何想法?

4

4 回答 4

10

这是我的代码,它对我有用:

    <script type="text/javascript" charset="utf-8">
      $(document).ready(function(){
        $("a[rel^='prettyPhoto']").prettyPhoto({
        social_tools:false,
        deeplinking:false});
      });
    </script>
于 2013-08-15T16:06:03.607 回答
1

3.1.5 版本将工作

(function($){$.prettyPhoto={version:'3.1.5'};
$.fn.prettyPhoto=function(pp_settings){pp_settings=jQuery.extend(
{.. deeplinking: false; ...}  
于 2013-12-20T09:02:41.240 回答
1

a)这对我有用:

function clearHashtag(){
    if(location.href.indexOf('#prettyPhoto')!==-1)
        location.hash="";
}

此代码位于 jquery.prettyPhoto.js 的底部

b) 还有一种方式,比如在 jquery.prettyPhoto.js 的开头设置: deeplinking: false 。

我的意思是这里:

(function($){$.prettyPhoto={version:'3.1.4'};$.fn.prettyPhoto=function(pp_settings){pp_settings=jQuery.extend({.. deeplinking: false; ...}

希望我有所帮助。

于 2013-03-26T08:11:35.760 回答
0

像这样的东西会起作用吗?

(function($) {
    console.log('check');

    $.prettyPhoto = {
        version : '3.1.5'
    };

    $.fn.prettyPhoto = function(pp_settings) {
        pp_settings = $.extend({
            deeplinking : false
        });
    };

    $("a[rel^='prettyPhoto']").prettyPhoto();

})(jQuery);  
于 2014-01-09T20:44:16.720 回答