我有一些 jQuery 行,只有在满足条件要求时才想应用它们。继承人的代码:
<script>
$(function() {
//<![CDATA[
if (location.pathname == "/one-page-checkout.asp")
$('#content_area').css("height", "1400px"); <!-- fix footer issue -->
$('#v65-onepage-ShippingCostDetails tr:nth-child(3)').css("display", "none");
//]]>
});
</script>
第一行 ,"$('#content_area').css("height", "1400px");"
符合我的要求,并且仅适用于 URL 具有 /one-page-checkout.asp 的情况。但是第二行,$('#v65-onepage-ShippingCostDetails tr:nth-child(3)').css("display", "none");
,在我的网站中普遍适用。
如何使第二行及其后的任何行服从条件?