面包屑无法在页面级别2或更高版本的ASP.NET MVC中使用

时间:2018-09-10 09:51:15

标签: javascript jquery asp.net asp.net-mvc razor

面包屑只能这样工作:

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>

0 个答案:

没有答案