我有以下的jQuery:爲什麼我的:nth-child(2)選擇器不能在我的jQuery中工作?
$(".score-window a:first-child").click(function() {
$(".score-window").hide();
$(".login-window").show();
});
$(".score-window a:nth-child(2)").click(function() {
$(".score-window").hide();
$(".register-window").show();
});
這是掛在下面的HTML:
<div class="score-window">
<i class="icon-remove" title="Close"></i>
<p>In order to view your score, you have to <a href="#">log in</a>.</p><br>
<p>Don't have an account yet? <a href="#">Register</a>! Totally free and you'll get the ability to save your scores.</p>
</div>
我只有在score-window
類兩個環節,所以我不明白爲什麼這ISN沒有工作。
請注意,'n-type-type'可能在這裏更有用,因爲第一個孩子是'i'而不是'p'。 – 2013-02-15 13:02:45