我使用漂亮的 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 发生......只加载一个页面。