我只想从下面的链接中提取 Services.aspx
http://localhost:49169/HirenSir/Services.aspx
使用 jQuery/javascript 是令人钦佩的,因为然后必须向包含此 href 参数的锚标记添加一个类..
谢谢
我只想从下面的链接中提取 Services.aspx
http://localhost:49169/HirenSir/Services.aspx
使用 jQuery/javascript 是令人钦佩的,因为然后必须向包含此 href 参数的锚标记添加一个类..
谢谢
"http://localhost:49169/HirenSir/Services.aspx".split('/').pop()
到目前为止,所有解决方案都有效......正则表达式怎么样?
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];