我有一个 CSS 文件,它将用背景图像填充一些 div。
.span3.one {
background: url('//path/to/images')
}
.span4.one {
background: url('//path/to/images')
}
span5.one {
background: url('//path/to/images')
}
是否有一些宏或这样的宏可以根据各种条件动态替换某些字符串,例如请求发起的域/url 或调用页面的链接中的某些线索?
span3.one {
background: url('//$replacemoreintelligently')
}
如果服务器端是答案,我宁愿使用 node.js 或 python,而不是 PHP。不过,我只需要一些指导。
可能会有数千个这样的页面。谢谢你。