我正在尝试向我的网站添加该功能,其中背景将根据使用样式表的部分URL进行更改。

例:

address/shop/index.php             = background image 1
address/shop/index.php?cPath=22    = background image 2
address/shop/index.php?cPath=23    = background image 3
address/shop/index.php?cPath=24    = background image 4


有任何想法吗?我看过Javascript和jQuery,但不确定要选择哪一种或如何使用它。

最佳答案

看来您使用的是PHP,因此无需使用javascript就可以做到。您只需要使用PHP的服务器变量。

就像是

 $cPath = $_GET['cPath']; //This allows access to the query part of the url
 if($cPath == 24){
     //set background url
 }

10-08 08:12