我正在創建一個博客網站,並且希望在點擊時擁有標題或鏈接顯示帖子,我已經可以正常工作,因此它們在點擊時都會打開,但我只希望它是標題下方的那個JQuery切換下一課
JQuery的:
$(document).ready(function(){
$('.slidingDiv').hide();
$('.show_hide').show();
$('.show_hide').click(function(){
$('.slidingDiv').slideToggle();
});
});
PHP:
for($i=0; $i<5; $i++)
{
print "
<a href='#' class='show_hide'>Article name</a>
<div class='slidingDiv'>
Fill this space with really interesting content.
</div>
<br>
<br>
";
}
比提前KS
這是錯誤的。 '.slidingDiv'不是'.show_hide'的子版本。 –
正確,我錯過了閱讀html代碼:S – cl3m