有什么方法可以使用 javascript 只获取当前页面的 PHP 页面吗?
Is there any way to get ONLY the PHP page of the current page using javascript?
我想使用 javascript 获取我的确切位置(仅 PHP 页面),例如,我目前使用 window.location
获取确切的 url : localhost/empc/myfolder/functions.php
如果我只想得到 functions.php
结果,代码是什么?可能吗?谢谢。
有可能。使用 javascript split function 将字符串分成几部分,然后访问最后一个元素以获取文件名:
var str = "localhost/empc/myfolder/functions.php";
var arr = str.split("/");
alert(arr[arr.length-1]); //this will alert functions.php
您可以使用位置对象来执行此操作,要删除文件名前的“/”,您可以使用子字符串方法。
location.pathname.substring(location.pathname.lastIndexOf("/") + 1);
你可以试试这个很简单
var url = 'localhost/empc/myfolder/functions.php';
var url = url.split('/');
alert(url.pop());
我想使用 javascript 获取我的确切位置(仅 PHP 页面),例如,我目前使用 window.location
获取确切的 url : localhost/empc/myfolder/functions.php
如果我只想得到 functions.php
结果,代码是什么?可能吗?谢谢。
有可能。使用 javascript split function 将字符串分成几部分,然后访问最后一个元素以获取文件名:
var str = "localhost/empc/myfolder/functions.php";
var arr = str.split("/");
alert(arr[arr.length-1]); //this will alert functions.php
您可以使用位置对象来执行此操作,要删除文件名前的“/”,您可以使用子字符串方法。
location.pathname.substring(location.pathname.lastIndexOf("/") + 1);
你可以试试这个很简单
var url = 'localhost/empc/myfolder/functions.php';
var url = url.split('/');
alert(url.pop());