Jquery / Js - 从URL中删除文本

时间:2010-02-01 15:17:14

标签: jquery

这是我的网址:

https://sub.domain.com/core/subsite/piano/page/...

我需要取字符串'piano',然后将其应用于页面上的元素。 该字符串并不总是'钢琴',我需要使用网址的第3部分。

(以下是我目前使用页面的痕迹标识来识别用户当前正在查看的页面的内容)但是我想将'piano'作为要应用的类:

$(function() {
    $('span .breadcrumb').each(function(){
        $('#Nav').addClass($(this).text());
        $('#Content').addClass($(this).text());
        $('.xpanding_footer').addClass($(this).text())
        $('#footer').addClass($(this).text());
    });
});

1 个答案:

答案 0 :(得分:1)

我只能猜测你在使用反斜杠进行拆分时询问路径名中的第三个参数。

因此,您可以使用以下方式获取值:

window.location.pathname.split('/')[3]