gpt4 book ai didi

filenames - 如何通过JQuery查找没有扩展名的文件名

转载 作者:行者123 更新时间:2023-12-02 06:03:25 24 4
gpt4 key购买 nike

我希望在当前页面 URL 中只找到文件名。

所以如果 URL 是

www.ex.com/des/filename.php

www.ex.com/des/filename.php#9

我只需要得到

filename

我试过了,但是没用。

var loc = window.location;
var fileNameIndex = loc.lastIndexOf("/") + 1;
var output = loc.substr(0, loc.lastIndexOf('.')) || loc;

谢谢

最佳答案

var loc = window.location.href;
var output = loc.split('/').pop().split('.').shift()

关于filenames - 如何通过JQuery查找没有扩展名的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16246326/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com