我想要做的是,当用户使用url查看没有任何变量的页面时,.tab
应取消隐藏。我也想从url读取变量并将其用作第n个选择器。
就像网址
http://example.com/IhateMacD.html?1
.tab
会将其样式从display:none
更改为display:block
,而1
的变量将用作第n个选择器。
到目前为止我尝试过的是
<script>
var ot= window.location.search.slice(1);
if ot !== null {
$('.tab').show();
$('.ppcode').val($('a[coupon]:nth-ot').attr('coupon'));
$('.ppname').html($('a[coupon]:nth-ot').prev().html());
}
</script>
但这很有效。 我们非常欢迎任何改进代码的建议。