Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以帮我弄清楚如何在 Volusion 的主页之后通过 CSS 隐藏左侧导航菜单吗?我有一个 volusion 的网上商店,不想在第一级之后看到左侧导航。谢谢!
您必须使用 jquery 根据要隐藏导航的特定页面修改 css。
$(document).ready(function() { var url_whatever = "http://www.yourwebsite.com/blablablayourlink.asp"; $(function(){ if (location.href==url_whatever){ $("#your_left_navigation_id_name").remove(); } }) });
将该代码大量放在您的js文件中,祝您好运