當點擊「正面」鏈接時,我想隱藏每一個與「正面」不同的班級,並在點擊「負面」時隱藏所有與班級不同的班級,鏈接。使用javascript隱藏與同一班級的所有tr
這是我的HTML:
<a href="" id="positive"> Positive rows</a>
<a href="" id="negative"> Negative rows</a>
<?php
$i=1;
while ($u=mysql_fetch_array($result2)){
?>
<tr id="row<?php echo $i;?>" class="<?php echo $u['positive_negative'];?>"> //echo $u['positive_negative'] can result on "Positive" or "Negative" text.
<td><? echo $u['date'];?></td>
<td><? echo $u[''positive_negative'];?></td>
<td><? echo $u['user_id'];?></td>
</tr>
<?php
$i++;
};
?>
我已經試過這個劇本,但不工作:
$(document).ready(function(){
$('#positive').click(function(){
$('.positive').show(200);
$('.negative').hide(200);
});
$('#negative').click(function(){
$('.negative').show(200);
$('.positive').hide(200);
});
});
提前任何幫助謝謝!
對不起,不工作:( – Freddie
你可以做一個的jsfiddle或jsbin? –