私は次のコードを使用しています。最初のif
条件は機能していますが、2番目の条件は機能していif
ません。どうしてか分かりません?同じCSSを2番目にif
も適用する必要があります。なぜこれなのか誰か教えてもらえますか?
<script type="text/javascript">
if (location.pathname.indexOf("girl-clothing") != -1) {
$(".RetailPriceValue").css("cssText", "margin: -203px 0 0 0 !important;");
}
if (location.pathname.indexOf("http://www.xyz.com/girl-clothing/?sort=featured&page=2")!= -1) {
$(".RetailPriceValue").css("cssText", "margin:-220px 0 0 0 !important;");
}
</script>