1

我只想从下面的链接中提取 Services.aspx

http://localhost:49169/HirenSir/Services.aspx

使用 jQuery/javascript 是令人钦佩的,因为然后必须向包含此 href 参数的锚标记添加一个类..

谢谢

4

3 回答 3

2

在 Javascript 中试试这个

var curPage = location.pathname.substring(location.pathname.lastIndexOf("/") + 1);

如果您当前的位置是 Services.aspx

检查小提琴

编辑

如果你想在这种情况下向锚添加一个类,试试这个

$('a[href$="Services.aspx"]').addClass('selected');

更新的小提琴

于 2012-10-03T21:24:55.973 回答
1
"http://localhost:49169/HirenSir/Services.aspx".split('/').pop()
于 2012-10-03T21:36:35.447 回答
0

到目前为止,所有解决方案都有效......正则表达式怎么样?

var url = "http://localhost:49169/HirenSir/Services.aspx";

// returns array of matches, should only contain one element 
url.match("[^/]*$"); // ["Services.aspx"]

如果你想把它放在一个单行...

"http://localhost:49169/HirenSir/Services.aspx".match("[^/]*$")[0];
于 2012-10-03T21:46:42.103 回答