当我做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');

最佳答案

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


编辑

关于javascript - 从网址中删除管理员,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5722808/

10-11 05:53