面包屑只能这样工作:
Home / Pages
但是如果页面为2级或更高级别,则为:
Home / Pages / Edit
不起作用。
我的js代码:
var Home = '<li><a href="/home"><span class="glyphicon glyphicon-home"></span></a></li>';
var URl = window.location.href.split('/')[0] + '/' + window.location.href.split('/')[1] + '/' + window.location.href.split('/')[2] + '/' + window.location.href.split('/')[3];
var total = Home + "<li><a href=" + URl + ">" + Page.replace(/[0-9]/g, '') + "</a></li>";
if (window.location.href.split('/')[5] || (window.location.href.split('/')[4])) {
if ((window.location.href.split('/')[4].toUpperCase() != "INDEX")) { total += "<li>" + $('h2:eq(0)').text().split(' ')[0] + "</li>"; }
}
$('.breadcrumb').html(total);
HTML
<ul class="breadcrumb">
<li>
<i class="ace-icon fa fa-home home-icon"></i>
<a href="#">Home</a>
</li>
</ul>