How can I change the last component of a url path?

前端 未结 7 849
一整个雨季
一整个雨季 2021-02-09 03:15
\"http://something.com:6688/remote/17/26/172\"

if I have the value 172 and I need to change the url to 175

\"http://something.com:6688/         


        
7条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-09 03:56

    Split the String by / then change the last part and rejoin by /:

    var newnumber = 175;
    var url = "http://something.com:6688/remote/17/26/172";
    var segements = url.split("/");
    segements[segements.length - 1] = "" + newnumber;
    var newurl = segements.join("/");
    alert(newurl); 
    

    Try it!

提交回复
热议问题