基于window.location.search显示文本

时间:2014-09-24 11:34:36

标签: javascript jquery html

我想要做的是,当用户使用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>

但这很有效。 我们非常欢迎任何改进代码的建议。

0 个答案:

没有答案