PrettyPhoto哈希链接

时间:2013-07-27 17:17:16

标签: jquery prettyphoto

我使用prettyphoto js 标准脚本是:

function setHashtag(){
    if(typeof theRel == 'undefined') return;
    location.hash = theRel+'/'+rel_index+'/';
};

如果我将其更改为:

function setHashtag(){
    if(typeof theRel == 'undefined') return;
    location.hash = theRel+'='+rel_index;
};

我不能工作。为什么呢?

显然,如果我使用这样的网址 -

  

http://mysite.ru/video/twd.php#id/1/   它工作,模态打开确定。   但是当我尝试打开这样的链接时   http://mysite.ru/video/twd.php#id=1   nothenig发生...只加载页面。

1 个答案:

答案 0 :(得分:0)

hashIndex = getHashtag();
hashRel = hashIndex;
hashIndex = hashIndex.substring(hashIndex.indexOf('=')+1,hashIndex.length);
hashRel = hashRel.substring(0,hashRel.indexOf('='));

hashtag = (url.indexOf('?id') !== -1) ? decodeURI(url.substring(url.indexOf('?id')+1,url.length)) : false;

location.hash = theRel + '=' + rel_index;
history.pushState(0, 0, location.hash.replace('#','?'));