📌  相关文章
📜  获取 url jquery 的最后一部分 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:56.232000             🧑  作者: Mango

代码示例1
// use this
var part = [];
var url = window.location.href;
    part = (url.toString()).split('/') // this will give an array then choose your part by calling this array!! 
// Hope this will help you!!!