这是我的网站:http ://dkurf.esxsb.servertrust.com/ 我需要为此页面创建特定样式:http ://dkurf.esxsb.servertrust.com/ProductDetails.asp?ProductCode=dfhs 我没有可以访问该页面的 html,因此我需要覆盖整个站点仅针对该页面的样式。
这是托管我的电子商务商店的公司提供的一些 javascript(Volusion,ps 永远不要使用它们,它们是 CSS 的噩梦!)
<script type="text/javascript">
//<![CDATA[
if (location.pathname == "/ProductDetails.asp" ||
location.pathname.indexOf("-p/") != -1 ||
location.pathname.indexOf("_p/") != -1)
document
.writeln("\n<style type='text/css'>.pricecolor{ background:#000; }</style>\n\n");
//]]>
</script>
但是,如果有人有任何建议,那将是非常有帮助的!
谢谢!