我在我的网站上实现了以下脚本。它会创建自动化的面包屑。我遇到的问题是它产生的标题。对于您当前所在的页面,它会显示页面标题,这很好。对于索引文件,它使用根文件夹名称而不是页面标题,这是我想要它做的。举个例子;
这就是现在推出的内容。
家/艺术/绘画
绘画I'很好用的是页面标题。 Art是文件夹名称,但我希望它是页面标题。主页我使用了Font Awesome Icon并且我很好。
这就是我喜欢的输出
家/艺术部/绘画
艺术部门是页面标题。
这是Javascript。
function breadcrumbs(){
sURL = new String;
bits = new Object;
var x = 0;
var stop = 0;
var output = '<a href="http://test.ccri.edu/"><i class="fa fa-home fa-lg"></i></a> / ';
sURL = location.href;
sURL = sURL.slice(8,sURL.length);
chunkStart = sURL.indexOf("/");
sURL = sURL.slice(chunkStart+1,sURL.length)
while(!stop){
chunkStart = sURL.indexOf("/");
if (chunkStart != -1){
bits[x] = sURL.slice(0,chunkStart)
sURL = sURL.slice(chunkStart+1,sURL.length);
}else{
stop = 1;
}
x++;
}
for(var i in bits){
output += "<a href=\"";
for(y=1;y<x-i;y++){
output += "../";
}
output += bits[i] + "/\">" + bits[i] + "</a> / ";
}
document.write(output + document.title);
}
<!--
breadcrumbs();
-->
</script>
&#13;
任何帮助将不胜感激!谢谢!