从网址中删除管理员

时间:2011-04-19 21:14:26

标签: javascript jquery

当我做window.location我得到

 pathname: "/shopper/admin/index.php"

我真的需要

 pathname: "/shopper/index.php"

因为当我执行jquery加载时,我需要管理员从URL

$('.replace').load('index.php?route=module/cart/ajax_sub?category_id=12');  

4 个答案:

答案 0 :(得分:5)

var my_location = window.location.pathname.replace('admin/', '');

编辑

答案 1 :(得分:2)

你可以做简单的替换:

pathname = "/shopper/admin/index.php"
pathname = pathname.replace('/admin', ''); // replace with nothing
// would be: "/shopper/index.php"

答案 2 :(得分:2)

您可以使用替换功能删除路径部分:

var part = '/admin';
window.location.replace(part, '');

答案 3 :(得分:2)

尝试以下操作从网址中删除“/ admin”

pathname: "/shopper/admin/index.php".replace("\/admin","")

Demo here