jQuery如何获得部分路径? [英] How to get part of the path with jQuery?

查看:58
本文介绍了jQuery如何获得部分路径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下URL www.webiste.com/Services/allservices.html

我如何使用jQuery来获得该URL的一部分?

How could I get part of this URL with jQuery?

例如'services' 或'allservices.html'

任何建议都值得赞赏.

Any suggestion much appreciated.

推荐答案

var url = "www.webiste.com/Services/allservices.html"
    url = url.split("/");
    alert(url[1]);

在上面的示例中,在找到/(分隔符)时拆分字符串url,并将其保存在数组中.然后,使用适当的索引,您可以使用所需的子字符串(在上面的示例中,将警报Services).

In the above example split the string url when find / (separator) and save it in an array. Then using the proper index, you can use the substring you wish (in the above example will alert Services).

演示: http://jsfiddle.net/jcNSs/

split()的更多信息: https://developer.mozilla .org/zh-CN/JavaScript/Reference/Global_Objects/String/split

这篇关于jQuery如何获得部分路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆