我正在尝试使用以下方法从 url 获取当前文件名:
$currentFile = window.location.pathname.split("/").pop();
如果完整路径类似于:
http://www.yoursite.com/folder/index.php
它将返回 index.php、index.cfm、index.html 等。
但是当 url 是http://www.yoursite.com/folder/
我无法检索当前文件名,这可以通过 js 或 jquery 实现吗?