0

我使用漂亮的 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;
};

身份证不起作用。为什么?

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

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

4

1 回答 1

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('#','?'));
于 2013-09-29T06:28:43.180 回答