var path = 'example.com/user/john/red'
path.substr(0, path.lastIndexOf("/"))
我得到了example.com/user/john
如何获得example.com/user/?表示lastSecondIndexOf,但没有这样的方法。
答案 0 :(得分:3)
函数.lastIndexOf
为fromIndex
采用第二个参数,您可以在参数中使用斜杠的最后一个索引:
path.substr(0, path.lastIndexOf("/",path.lastIndexOf("/")-1));