js 获取链接最后一个特定字符后面的所有字符串
作者:互联网
var url = 'https://xzdx.xyz/';
var cut = url.substring(url.lastIndexOf(".")+1);
console.log(cut);
打印出来的是 xyz
lastIndexOf 用法:https://www.runoob.com/jsref/jsref-lastindexof-array.html
substring 用法:https://www.runoob.com/jsref/jsref-substring.html
标签:www,url,xyz,jsref,js,substring,https,字符串,链接 来源: https://blog.csdn.net/m0_54915794/article/details/120273507