jquery操纵了几个链接

时间:2014-11-20 07:52:46

标签: jquery replace split href

我有一些链接我需要使用一些jquery来纠正。链接的格式如下:

http://www.xyz.de/produkte/angebote/kategorie/angebote/produkte/singleview/produkt/oranier-wassertechnik-solar-pufferspeicher-set-2/

我想拆分href,获取最后两个斜杠后面的所有内容,而前面的所有内容都被删除。

我最好的镜头如下:

$('.tt-products-listhighlights a').each(function() {
  $(this).attr("href", function(index, old) {
        return old.replace("produkt/", "produkte/singleview/produkt/");
  });
});

1 个答案:

答案 0 :(得分:0)

我将分裂,但可能有更好的方式

$('.tt-products-listhighlights a').each(function() {

  var ary= $(this).attr("href").split("/");
  var lst=parseInt(ary.length)-2;

 ary[lst];//this is the last text

});