如何从location.pathname网址创建页面名称?

时间:2017-05-16 22:43:21

标签: javascript

我有以下网址:

http://localhost/get/this/url/in/a-nice-format.html

var pagename= location.pathname.split('/').join(':');

给了我

:get:this:url:in:a-nice-format.html

如何摆脱第一个":"?

感谢。

3 个答案:

答案 0 :(得分:1)

pagename = location.pathname.split(' /')。join(':')。substr(1);

答案 1 :(得分:0)

您好,您可以使用子串方法。只需这样做.... var pageName2 = pageName.substring(1);我希望这会有所帮助。

答案 2 :(得分:0)

我暂时无法发表评论但无论如何都无法提供帮助。在其他地方可能有答案......

无论如何,尝试使用slice()并传入'开始'参数为1以删除第一个':#39;。

像这样:var pagename = location.pathname.split(' /')。join(':')。slice(1);