|
有2种方法第一种是在顶部显示,第二种是在底部显示的,随自己的爱好
打开TEMPLATE / WIND / header.htm
找到代码
<ul id=\"nav-global\">
在下面加
<SCRIPT type=text/javascript>
if(parent.location.href=={$db_bbsurl}/music.htm){
document.write(\" | <a href=\"+window.location.href+\" target=_parent>关音乐</a> | <a
href=radio.htm target=_parent>电台版</a>\");
}else if(parent.location.href=={$db_bbsurl}/radio.htm){
document.write(\" | <a href=music.htm target=_parent>音乐版</a> | <a
href=\"+window.location.href+\" target=_parent>关电台</a>\");
}else{
document.write(\" | <a href=music.htm target=_top>音乐版</a> | <a href=radio.htm
target=_top>电台版</a>\");
}
</SCRIPT>|
还有一种方法
打开TEMPLATE / WIND / footer.htm
找到代码
<ul>{$GLOBALS[db_foot]}
下面添加
<SCRIPT type=text/javascript>
if(parent.location.href=={$db_bbsurl}/music.htm){
document.write(\" | <a href=\"+window.location.href+\" target=_parent>关音乐</a> | <a
href=radio.htm target=_parent>电台版</a>\");
}else if(parent.location.href=={$db_bbsurl}/radio.htm){
document.write(\" | <a href=music.htm target=_parent>音乐版</a> | <a
href=\"+window.location.href+\" target=_parent>关电台</a>\");
}else{
document.write(\" | <a href=music.htm target=_top>音乐版</a> | <a href=radio.htm
target=_top>电台版</a>\");
}
</SCRIPT>|
注意打开包里的:music.htm和radio.htm改下里面的网址,要不然就跳转到我的论坛了,
解压包上传到你的根目录下面,BBS的就传到BBS下面 |
|