0

我需要从 js 获取我的视图的类名。

说我的网址是

http://localhost/test/index.php/mytest/newtest/34

这里 newtest 是视图类的名称。我想从我的 js 中获取这个类名。我在谷歌上搜索过它,但没有找到任何有用的东西。

提前致谢。

4

1 回答 1

2
var pathArray = window.location.pathname;
pathArray = pathArray.replace(/^\/|\/$/g, '');
pathArray = pathArray.split( '/' );
console.log(pathArray);

使用此 Javascript,您将从您的 url 中获取所有部分作为数组。在那里你会知道哪个元素是你正在寻找的元素..

于 2013-04-06T16:17:23.447 回答